51 lines
2.2 KiB
HTML
51 lines
2.2 KiB
HTML
|
{% extends "auth/login_base.html" %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block login_content %}
|
||
|
<div>
|
||
|
<form action="{% url 'musician:login' %}" role="form" method="post">
|
||
|
{% csrf_token %}
|
||
|
<input type="hidden" name="next" value="{{ next }}" />
|
||
|
|
||
|
<div id="div_id_username" class="clearfix control-group {% if form.username.errors %}error{% endif %}">
|
||
|
<div class="form-group">
|
||
|
<label for="id_username">{{ form.username.label }}:</label>
|
||
|
<input type="text" name="username" maxlength="100" autocapitalize="off" autocorrect="off"
|
||
|
class="form-control textinput textInput" id="id_username" required autofocus
|
||
|
{% if form.username.value %}value="{{ form.username.value }}" {% endif %}>
|
||
|
{% if form.username.errors %}
|
||
|
<p class="text-error">
|
||
|
{{ form.username.errors|striptags }}
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div id="div_id_password" class="clearfix control-group {% if form.password.errors %}error{% endif %}">
|
||
|
<div class="form-group">
|
||
|
<label for="id_password">{{ form.password.label }}:</label>
|
||
|
<input type="password" name="password" maxlength="100" autocapitalize="off" autocorrect="off"
|
||
|
class="form-control textinput textInput" id="id_password" required>
|
||
|
{% if form.password.errors %}
|
||
|
<p class="text-error">
|
||
|
{{ form.password.errors|striptags }}
|
||
|
</p>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% if form.non_field_errors %}
|
||
|
{% for error in form.non_field_errors %}
|
||
|
<div class="well well-small text-error" style="border: none">{{ error }}</div>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
|
||
|
<div><a href=#password_reset">{% trans "Have you forgot the password?" %}</a></div>
|
||
|
<div class="form-actions-no-box">
|
||
|
<input type="submit" name="submit" value="{% trans 'Log in' %}" class="btn btn-primary form-control"
|
||
|
id="submit-id-submit">
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
{% endblock login_content %}
|