Files
myriad/myriad/templates/auth/register.html

19 lines
486 B
HTML

{% extends 'base.html' %}
{% block header %}
<div class="title">{% block title %}Register{% endblock %}</div>
{% endblock %}
{% block content %}
<div class="container">
<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 %}