| 12345678910111213141516171819 |
- <section id="grav-login">
- {{ content }}
- {% include 'partials/messages.html.twig' %}
- <form method="post" action="{{ uri.url ~ page.header.form.action}}">
- {% for field in page.header.form.fields %}
- {% if field.type %}
- <div>
- {% include ["forms/fields/#{field.type}/#{field.type}.html.twig", 'forms/fields/text/text.html.twig'] %}
- </div>
- {% endif %}
- {% endfor %}
- <div class="form-actions secondary-accent">
- {#<a class="button secondary" href="{{ base_url_relative }}/forgot"><i class="fa fa-exclamation-circle"></i> {{ 'LOGIN_PLUGIN.BTN_FORGOT'|t }}</a>#}
- <button type="submit" class="button primary" name="task" value="login.login"><i class="fa fa-sign-in"></i> {{ 'LOGIN_PLUGIN.BTN_LOGIN'|t }}</button>
- </div>
- </form>
- </section>
|