Enhance VerificationSettingsDialog: add success message for link copy action and improve button styling

This commit is contained in:
a.beging@eas-solutions.de
2026-04-24 14:29:18 +02:00
parent 954d57b7a6
commit d09926a8b4
2 changed files with 9 additions and 2 deletions

View File

@@ -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>