mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-15 02:33:22 +00:00
16 lines
403 B
Django/Jinja
16 lines
403 B
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{% block title %}
|
|
{% trans %}Refound account{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="accounting">
|
|
<h3>{% trans %}Refound account{% endtrans %}</h3>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p() }}
|
|
<p><input type="submit" value="{% trans %}Refound{% endtrans %}" /></p>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |