22 lines
532 B
HTML
22 lines
532 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% if message is defined %}
|
|
<p class="message">
|
|
{{ message }}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<form action="/signup" method="POST">
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username" id="username">
|
|
<label for="email">Email</label>
|
|
<input type="email" name="email" id="email">
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password">
|
|
<input type="submit" value="Sign up">
|
|
</form>
|
|
|
|
{% endblock %}
|