15 lines
485 B
HTML
15 lines
485 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h1>{% block title %}{{localize("register")}}{% endblock %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<label for="username">{{localize("username")}}</label>
|
|
<input name="username" id="username" required autofocus>
|
|
<label for="password">{{localize("password")}}</label>
|
|
<input type="password" name="password" id="password" required>
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
{% endblock %} |