Copywriting consistency

This commit is contained in:
devStorm 2020-05-18 05:10:19 -07:00
parent b64ed7ad63
commit 45023cd775
No known key found for this signature in database
GPG Key ID: D52E1B66F336AC57
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
<div class="card">
<div class="card-body">
<h1 class="h2">Manage Your Security Key</h1>
<p>Delete all keys will also disable WebAuthn 2FA.</p>
<p>Unlink all keys will also disable WebAuthn 2FA.</p>
<form id="formManageKey" method="post">
{{ fido_manage_form.csrf_token }}
@ -34,7 +34,7 @@
<th scope="row">{{ key.id }}</th>
<td>{{ key.name }}</td>
<td><script>document.write(new Date('{{ key.created_at }}').toLocaleString());</script></td>
<td class="text-center"><button class="btn btn-outline-danger" onclick="$('#credential_id').val('{{ key.credential_id }}'); $('#formManageKey').submit();">Delete</button></td>
<td class="text-center"><button class="btn btn-outline-danger" onclick="$('#credential_id').val('{{ key.credential_id }}'); $('#formManageKey').submit();">Unlink</button></td>
</tr>
{%endfor%}
<tr>