22 lines
606 B
HTML
22 lines
606 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<div class="title">{% block title %}Register{% endblock %}</div>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
|
|
<h1>Register new user</h1>
|
|
<p>It is recommended to disable this in the config file once a user has been set up</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>
|
|
|
|
</div>
|
|
{% endblock %} |