stages/identification: fix recovery template

This commit is contained in:
Jens Langhammer 2020-06-01 19:08:14 +02:00
parent fe1ff7fc76
commit c961327d27
1 changed files with 26 additions and 69 deletions

View File

@ -1,72 +1,29 @@
{% extends 'base/skeleton.html' %}
{% load static %}
{% load i18n %} {% load i18n %}
{% load static %}
{% block body %} <header class="pf-c-login__main-header">
<div class="pf-c-background-image"> <h1 class="pf-c-title pf-m-3xl">
<svg xmlns="http://www.w3.org/2000/svg" class="pf-c-background-image__filter" width="0" height="0"> {% trans 'Trouble Logging In?' %}
<filter id="image_overlay"> </h1>
<feColorMatrix type="matrix" values="1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0"></feColorMatrix> </header>
<feComponentTransfer color-interpolation-filters="sRGB" result="duotone"> <div class="pf-c-login__main-body">
<feFuncR type="table" tableValues="0.086274509803922 0.43921568627451"></feFuncR> {% block card %}
<feFuncG type="table" tableValues="0.086274509803922 0.43921568627451"></feFuncG> <form method="POST" class="pf-c-form">
<feFuncB type="table" tableValues="0.086274509803922 0.43921568627451"></feFuncB> {% block above_form %}
<feFuncA type="table" tableValues="0 1"></feFuncA> {% endblock %}
</feComponentTransfer>
</filter> {% include 'partials/form.html' %}
</svg>
{% block beneath_form %}
{% endblock %}
<div class="pf-c-form__group pf-m-action">
<button class="pf-c-button pf-m-primary pf-m-block" type="submit">{% trans primary_action %}</button>
</div>
</form>
{% endblock %}
</div> </div>
{% include 'partials/messages.html' %} <footer class="pf-c-login__main-footer">
<div class="pf-c-login"> {% if config.login.subtext %}
<div class="pf-c-login__container"> <p>{{ config.login.subtext }}</p>
<header class="pf-c-login__header"> {% endif %}
<img class="pf-c-brand" src="{% static 'passbook/logo.svg' %}" style="height: 60px;" </footer>
alt="passbook icon" />
<img class="pf-c-brand" src="{% static 'passbook/brand.svg' %}" style="height: 60px;"
alt="passbook branding" />
</header>
<main class="pf-c-login__main">
<header class="pf-c-login__main-header">
<h1 class="pf-c-title pf-m-3xl">
{% trans 'Trouble Logging In?' %}
</h1>
</header>
<div class="pf-c-login__main-body">
{% block card %}
<form method="POST" class="pf-c-form">
{% block above_form %}
{% endblock %}
{% include 'partials/form.html' %}
{% block beneath_form %}
{% endblock %}
<div class="pf-c-form__group pf-m-action">
<button class="pf-c-button pf-m-primary pf-m-block" type="submit">{% trans primary_action %}</button>
</div>
</form>
{% endblock %}
</div>
<footer class="pf-c-login__main-footer">
{% if config.login.subtext %}
<p>{{ config.login.subtext }}</p>
{% endif %}
</footer>
</main>
<footer class="pf-c-login__footer">
<ul class="pf-c-list pf-m-inline">
<li>
<a href="https://beryju.github.io/passbook/">{% trans 'Documentation' %}</a>
</li>
{% config 'passbook.footer_links' as footer_links %}
{% for link in footer_links %}
<li>
<a href="{{ link.href }}">{{ link.name }}</a>
</li>
{% endfor %}
</ul>
</footer>
</div>
</div>
{% endblock %}