summaryrefslogtreecommitdiff
path: root/gstudio/templates/registration/login.html
blob: 222505c1fc1040caa28a8ffe036b7e052ca3c37c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "gstudio/base.html" %}
{% load i18n %}

{% block content %}
<form method="post" action=".">
{% csrf_token %}  {{ form.as_p }}

  <input type="submit" value="{% trans 'Log in' %}" />
  <input type="hidden" name="next" value="{{ next }}" />
</form>

<p>{% trans "Forgot password" %}? <a href="{% url auth_password_reset %}">{% trans "Reset it" %}</a>!</p>
<p>{% trans "Not member" %}? <a href="{% url registration_register %}">{% trans "Register" %}</a>!</p>
{% endblock %}