1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/templates/registration/login.jinja

25 lines
693 B
Text
Raw Normal View History

2021-10-15 21:47:49 +02:00
{% extends "base.jinja" %}
{% block mainpage %}
<h1>{{ _("Login") }}</h1>
{% if next %}
<div class="alert alert-info">
{% trans %}You need to log in before you can access <code>{{ next }}</code>.{% endtrans %}
</div>
{% endif %}
<form method="post" class="form">
{% csrf_token %}
{{ bootstrap_form(form) }}
<div class="password-reset-link">
<a href="{{ url("password_reset") }}">{% trans %}Forgotten your password or username?{% endtrans %} </a>
</div>
<button type="submit" class="btn btn-lg btn-primary btn-block">
{{ _("Log in") }}
</button>
</form>
{% endblock %}