2015-10-13 22:43:15 +02:00
|
|
|
{% extends "WallabagUserBundle::layout.html.twig" %}
|
|
|
|
|
|
|
|
{% block fos_user_content %}
|
|
|
|
<form class="form" action="" method="post">
|
|
|
|
<div class="card-content">
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
{% for flashMessage in app.session.flashbag.get("two_factor") %}
|
|
|
|
<p class="error">{{ flashMessage|trans }}</p>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<div class="input-field col s12">
|
|
|
|
<label for="_auth_code">{{ "scheb_two_factor.auth_code"|trans }}</label>
|
|
|
|
<input id="_auth_code" type="text" autocomplete="off" name="_auth_code" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% if useTrustedOption %}
|
|
|
|
<div class="input-field col s12">
|
|
|
|
<input id="_trusted" type="checkbox" name="_trusted" />
|
|
|
|
<label for="_trusted">{{ "scheb_two_factor.trusted"|trans }}</label>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="card-action center">
|
2016-03-08 17:02:34 +01:00
|
|
|
<a href="{{ path('fos_user_security_logout') }}" class="waves-effect waves-light grey btn">{{ 'security.login.cancel'|trans }}</a>
|
2015-10-13 22:43:15 +02:00
|
|
|
<button class="btn waves-effect waves-light" type="submit" name="send">
|
|
|
|
{{ "scheb_two_factor.login"|trans }}
|
2016-03-08 17:02:34 +01:00
|
|
|
<i class="material-icons right">send</i>
|
2015-10-13 22:43:15 +02:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|