20 lines
728 B
HTML
20 lines
728 B
HTML
{% extends "base.html" %}
|
|
{% from "auth/_field.html" import render_field %}
|
|
|
|
{% block title %}Sign in · Steady{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel" aria-labelledby="login-heading">
|
|
<h1 id="login-heading">Welcome back</h1>
|
|
<p>Sign in to continue at your own pace.</p>
|
|
<form method="post" novalidate>
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field(form.email, "email") }}
|
|
{{ render_field(form.password, "current-password") }}
|
|
<div class="check-field">{{ form.remember() }} {{ form.remember.label }}</div>
|
|
{{ form.submit(class="button") }}
|
|
</form>
|
|
<p>New here? <a href="{{ url_for('auth.register') }}">Create an account</a>.</p>
|
|
</section>
|
|
{% endblock %}
|
|
|