mirror of
https://github.com/ae-utbm/sith.git
synced 2025-04-01 17:30:26 +00:00
21 lines
497 B
HTML
21 lines
497 B
HTML
{% extends "core/base.jinja" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ title }}</h1>
|
|
|
|
{% if user_registered %}
|
|
Welcome {{ user_registered.get_display_name }}!
|
|
You successfully registred and you will soon receive a confirmation mail.
|
|
|
|
Your username is {{ user_registered.username }}.
|
|
{% endif %}
|
|
|
|
<form action="{% url 'core:register' %}" method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<p><input type="submit" value="Register!" /></p>
|
|
</form>
|
|
{% endblock %}
|