]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Resources/views/form/recover.html.twig
Shorten air bundle route aliases
[airbundle] / Resources / views / form / recover.html.twig
index 68399a03b46de024e7fea175eaaf510ae97b79bc..dc080dd0c7b05510a43bb68f4c3701093b4c455e 100644 (file)
@@ -1,13 +1,21 @@
-{% extends '@RapsysAir/body.html.twig' %}
+{% extends '@RapsysAir/base.html.twig' %}
 {% block content %}
-       <section id="form">
-               <h2><a href="{{ path('rapsys_user_recover') }}">{% trans %}Recover{% endtrans %}</a></h2>
+       <article>
+               <header>
+                       <h2><a href="{{ path('rapsysuser_recover') }}">{% trans %}Recover{% endtrans %}</a></h2>
+               </header>
                {% if sent %}
                        <p class="message notice">{% trans %}Your recover account message has been sent{% endtrans %}</p>
                {% else %}
                        {{ form_start(form) }}
                                <div>
-                                       {{ form_row(form.mail) }}
+                                       {% if form.mail is defined %}
+                                               {{ form_row(form.mail) }}
+                                       {% endif %}
+
+                                       {% if form.password is defined %}
+                                               {{ form_row(form.password) }}
+                                       {% endif %}
 
                                        {{ form_row(form.submit) }}
                                </div>
@@ -16,5 +24,5 @@
                                <footer style="display:none">{{ form_rest(form) }}</footer>
                        {{ form_end(form) }}
                {% endif %}
-       </section>
+       </article>
 {% endblock %}