PDF rausgenommen
This commit is contained in:
@ -0,0 +1,42 @@
|
||||
{% extends 'admin.twig' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<script type="text/javascript">
|
||||
function copyRecoveryCodesToClipboard()
|
||||
{
|
||||
var textarea = document.createElement('textarea');
|
||||
textarea.value = '{{ codes|join("\n")|e('js') }}';
|
||||
textarea.setAttribute('readonly', '');
|
||||
textarea.style.position = 'absolute';
|
||||
textarea.style.left = '-9999px';
|
||||
document.body.appendChild(textarea);
|
||||
textarea.select();
|
||||
document.execCommand('copy');
|
||||
document.body.removeChild(textarea);
|
||||
}
|
||||
</script>
|
||||
|
||||
<div piwik-content-block
|
||||
content-title="{{ 'TwoFactorAuth_TwoFactorAuthentication'|translate }} - {{ 'TwoFactorAuth_RecoveryCodes'|translate }}">
|
||||
|
||||
{% include '@TwoFactorAuth/_showRecoveryCodes.twig' %}
|
||||
|
||||
<h2>{{ 'TwoFactorAuth_GenerateNewRecoveryCodes'|translate }}</h2>
|
||||
<p>{{ 'TwoFactorAuth_GenerateNewRecoveryCodesInfo'|translate }}<br /><br /></p>
|
||||
|
||||
{% if regenerateSuccess %}
|
||||
<div class="alert alert-success">{{ 'TwoFactorAuth_RecoveryCodesRegenerated'|translate }}</div>
|
||||
{% endif %}
|
||||
|
||||
{% if regenerateError %}
|
||||
<div class="alert alert-danger">{{ 'General_ExceptionNonceMismatch'|translate }}</div>
|
||||
{% endif %}
|
||||
|
||||
<form method="post" action="{{ linkTo({'method': 'TwoFactorAuth', 'action': 'showRecoveryCodes'}) }}" ng-non-bindable>
|
||||
<input type="hidden" name="regenerateNonce" value="{{ regenerateNonce }}">
|
||||
<input type="submit" class="btn" value="{{ 'TwoFactorAuth_GenerateNewRecoveryCodes'|translate }}">
|
||||
</form>
|
||||
|
||||
<div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user