21 lines
791 B
HTML
21 lines
791 B
HTML
{% extends "base.html" %}
|
|
{% from "auth/_field.html" import render_field %}
|
|
|
|
{% block title %}Create account · Steady{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel" aria-labelledby="register-heading">
|
|
<h1 id="register-heading">Create your account</h1>
|
|
<p>Just the essentials. You can personalize Steady later.</p>
|
|
<form method="post" novalidate>
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field(form.username, "username") }}
|
|
{{ render_field(form.email, "email") }}
|
|
{{ render_field(form.password, "new-password") }}
|
|
{{ render_field(form.confirm_password, "new-password") }}
|
|
{{ form.submit(class="button") }}
|
|
</form>
|
|
<p>Already registered? <a href="{{ url_for('auth.login') }}">Sign in</a>.</p>
|
|
</section>
|
|
{% endblock %}
|
|
|