Enhance VerificationSettingsDialog: add success message for link copy action and improve button styling
This commit is contained in:
@@ -10,8 +10,12 @@
|
||||
<div class="border p-3 rounded">
|
||||
<p class="mb-2 text-muted">Kopiere diesen Link und teile ihn mit <strong>@Prospect?.Name</strong>:</p>
|
||||
<div>
|
||||
<input type="text" class="form-control" value="@LinkUrl" readonly /><br />
|
||||
<Button Color="Color.Secondary" Clicked="CopyLink" Style="width: 100%;">
|
||||
<input type="text" class="form-control" value="@LinkUrl" readonly />
|
||||
@if(CopySuccess)
|
||||
{
|
||||
<div class="alert alert-success py-2 mt-2 mb-0">Link wurde in die Zwischenablage kopiert!</div>
|
||||
}
|
||||
<Button Color="Color.Secondary" Clicked="CopyLink" Style="width: 100%;" Class="mt-2">
|
||||
<i class="fa-solid fa-copy mr-2"></i>Link kopieren
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user