summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/auth/register.html
blob: 7d079c25c35419354e02f907be927de26e41c903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% block header %}
    <h1>{% block title %}register{% endblock %}</h1>
{% endblock %}

{% block content %}
<p>create a new account here. if you already have an account, <a href="{{url_for('auth.login')}}">login</a> instead.</p>
<form method="post">
    <label for="username">Username</label>
    <input name="username" id="username" required>
    <br>
    <label for="password">Password</label>
    <input type="password" name="password" id="password" required>
    <br>
    <input type="submit" value="register">
</form>
{% endblock %}