18 lines
449 B
HTML
18 lines
449 B
HTML
{% extends 'partials/base.html' %}
|
|
|
|
{% block name %}register{% endblock %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<form method="post">
|
|
<label for="username">username:</label>
|
|
<input name="username" required>
|
|
<label for="password">password:</label>
|
|
<input type="password" name="password" required>
|
|
<label for="email">email:</label>
|
|
<input type="email" name="email" required>
|
|
<input type="submit" value="register">
|
|
</form>
|
|
</main>
|
|
{% endblock %}
|