mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 00:48:32 +01:00
Add tooltip for email forwarding switch, copy and send test email
This commit is contained in:
parent
6015dbd4d1
commit
61a3844ec4
1 changed files with 11 additions and 0 deletions
|
@ -66,6 +66,8 @@
|
|||
<td>
|
||||
<div class="btn-group">
|
||||
<button class="clipboard btn btn-secondary btn-sm"
|
||||
data-toggle="tooltip"
|
||||
title="Copy the alias to clipboard"
|
||||
data-clipboard-text="{{ gen_email.email }}">
|
||||
Copy
|
||||
</button>
|
||||
|
@ -76,6 +78,8 @@
|
|||
|
||||
{% if gen_email.enabled %}
|
||||
<button class="btn btn-secondary btn-sm"
|
||||
data-toggle="tooltip"
|
||||
title="Send a test email to the alias."
|
||||
{% if loop.index ==1 %}
|
||||
data-intro="By triggering the test email,
|
||||
SimpleLogin server will send an email to this alias
|
||||
|
@ -94,6 +98,13 @@
|
|||
<input type="hidden" name="gen-email-id" value="{{ gen_email.id }}">
|
||||
|
||||
<label class="custom-switch"
|
||||
data-toggle="tooltip"
|
||||
{% if gen_email.enabled %}
|
||||
title="Block Alias"
|
||||
{% else %}
|
||||
title="Unblock Alias"
|
||||
{% endif %}
|
||||
|
||||
{% if loop.index ==1 %}
|
||||
data-intro="By turning off an alias, emails sent to this alias will <b>NOT</b>
|
||||
be forwarded to your personal email. <br><br>
|
||||
|
|
Loading…
Reference in a new issue