mirror of
https://github.com/ae-utbm/sith.git
synced 2025-04-17 19:40:20 +00:00
* Migrate alpine * Migrate jquery and jquery-ui * Migrate shorten * Add babel for javascript * Introduce staticfiles django app * Only bundle -index.js files in static/webpack * Unify scss and webpack generated files * Convert scss calls to static * Add --clear-generated option to collectstatic * Fix docs warnings
25 lines
584 B
Django/Jinja
25 lines
584 B
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{%- block additional_css -%}
|
|
<link rel="stylesheet" href="{{ static('user/login.scss') }}">
|
|
{%- endblock -%}
|
|
|
|
{% block title %}{% trans %}Register{% endtrans %}{% endblock %}
|
|
|
|
{% block nav %}
|
|
{% endblock %}
|
|
|
|
{% block info_boxes %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="title">{% trans %}Register{% endtrans %}</h1>
|
|
|
|
<form action="{{ url('core:register') }}" method="post">
|
|
{% csrf_token %}
|
|
{% render_honeypot_field %}
|
|
{{ form }}
|
|
<input type="submit" value="{% trans %}Register{% endtrans %}" />
|
|
</form>
|
|
{% endblock %}
|