06/15 Phase 1 + 2 codes
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
{% extends "base.html" %}
|
||||
{% from "auth/_macros.html" import field %}
|
||||
{% block title %}{{ _('Sign in') }}{% endblock %}
|
||||
{% block content %}
|
||||
<div class="card narrow">
|
||||
<h2>{{ _('Sign in') }}</h2>
|
||||
<form method="post" novalidate>
|
||||
{{ form.hidden_tag() }}
|
||||
{{ field(form.email) }}
|
||||
{{ field(form.password) }}
|
||||
<label class="check">{{ form.remember() }} {{ form.remember.label.text }}</label>
|
||||
{{ form.submit(class="btn") }}
|
||||
</form>
|
||||
<p class="muted">
|
||||
<a href="{{ url_for('auth.reset_request') }}">{{ _('Forgot password?') }}</a> ·
|
||||
<a href="{{ url_for('auth.register') }}">{{ _('Create account') }}</a>
|
||||
</p>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user