BirdQuizz/templates/auth/signup.html

22 lines
576 B
HTML
Raw Normal View History

2022-05-19 11:07:34 +02:00
{% extends "base.html" %}
{% block content %}
{% if message is defined %}
<p class="message">
{{ message }}
</p>
{% endif %}
<form action="/signup" method="POST">
2022-05-26 13:58:46 +02:00
<label for="username">{{ _('Username') }}</label>
2022-05-19 11:07:34 +02:00
<input type="text" name="username" id="username">
2022-05-26 13:58:46 +02:00
<label for="email">{{ _('Email') }}</label>
2022-05-19 11:07:34 +02:00
<input type="email" name="email" id="email">
2022-05-26 13:58:46 +02:00
<label for="password">{{ _('Password') }}</label>
2022-05-19 11:07:34 +02:00
<input type="password" name="password" id="password">
2022-05-26 13:58:46 +02:00
<input type="submit" value="{{ _('Sign up') }}">
2022-05-19 11:07:34 +02:00
</form>
{% endblock %}