forked from CGM_Public/pretix_original
* Upgrade to Django 2.0 * more models * i18n foo * Update setup.py * Fix Sentry exception PRETIXEU-JC * Enforce slug uniqueness * Import sorting * Upgrade to Django 2.1 * Travis config * Try to fix PostgreSQL failure * Smaller test matrix * staticfiles→static * Include request in all authenticate() calls
20 lines
594 B
HTML
20 lines
594 B
HTML
{% extends "pretixcontrol/auth/base.html" %}
|
|
{% load bootstrap3 %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<form class="form-signin" action="" method="post">
|
|
<h3>{% trans "Set new password" %}</h3>
|
|
{% csrf_token %}
|
|
{% bootstrap_form_errors form type='all' layout='inline' %}
|
|
{% bootstrap_field form.password %}
|
|
{% bootstrap_field form.password_repeat %}
|
|
<div class="form-group buttons">
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
{% trans "Save" %}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|