first commit
This commit is contained in:
commit
098f59b644
3632 changed files with 518046 additions and 0 deletions
15
mailcow/data/web/templates/tfa_keys.twig
Normal file
15
mailcow/data/web/templates/tfa_keys.twig
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<div id="tfa_keys">
|
||||
{% if tfa_data.additional %}
|
||||
{% for key_info in tfa_data.additional %}
|
||||
<form style="display:inline;" method="post">
|
||||
<input type="hidden" name="unset_tfa_key" value="{{ key_info.id }}">
|
||||
<div class="d-flex flex-column">
|
||||
<span style="padding:4px;margin:4px" class="me-auto badge fs-6 bg-{% if tfa_id == key_info.id %}success{% else %}dark{% endif %}">
|
||||
{{ key_info.key_id }}
|
||||
<a href="#" class="btn p-0 text-white" style="font-size: 12px; line-height: 1rem;" onClick='return confirm("{{ lang.admin.ays }}")?$(this).closest("form").submit():"";'>[{{ lang.admin.remove }}]</a>
|
||||
</span>
|
||||
</div>
|
||||
</form>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue