mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
49 lines
1.8 KiB
Twig
49 lines
1.8 KiB
Twig
{% extends './layout/default' %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="POST" action="{{ route('profile.mfa.disableMFA.post') }}" accept-charset="UTF-8" class="form-horizontal">
|
|
<input name="_token" type="hidden" value="{{ csrf_token() }}">
|
|
<div class="row">
|
|
<div class="col-lg-6 col-lg-offset-3 col-md-12 col-sm-12 col-xs-12">
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ 'disable_mfa_page'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<p class="hidden-print">
|
|
{{ 'disable_mfa_intro'|_ }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-6 col-lg-offset-3 col-md-12 col-sm-12 col-xs-12">
|
|
<div class="box">
|
|
<div class="box-body">
|
|
{{ ExpandedForm.password('password', {helpText: 'current_password_confirm_mfa'|_}) }}
|
|
{{ ExpandedForm.text('code', code) }}
|
|
</div>
|
|
<div class="box-footer">
|
|
<button type="submit" class="btn btn-danger">{{ 'pref_disable_mfa'|_ }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|
|
{% block scripts %}
|
|
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
|
$(function () {
|
|
"use strict";
|
|
|
|
// Focus first visible form element.
|
|
$("form#preferences_code input:enabled:visible:first").first().select();
|
|
});
|
|
</script>
|
|
{% endblock %}
|