You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
xmrauctions/web/templates/registration/login.html

23 lines
570 B
HTML

{% extends 'base.html' %}
{% block content %}
<section id="main" class="wrapper">
<div class="container">
<header class="minor">
<h2>Login</h2>
</header>
<section>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit">
</form>
<p>Forgot your password? <a href="{% url 'password_reset' %}">Reset here.</a></p>
<p>Don't have an account yet? <a href="{% url 'django_registration_register' %}">Register here.</a></p>
</section>
</div>
</section>
{% endblock %}