16 lines
469 B
HTML
16 lines
469 B
HTML
<!-- templates/registration/login.html -->
|
|
{% extends 'base.html' %}
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Log In</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="btn btn-light" type="submit">Log In</button>
|
|
<p></p>
|
|
<span style="white-space: nowrap">New to MultiUserOpenRefine?</span>
|
|
<a href="{% url 'signup' %}">Create an account.</a>
|
|
</form>
|
|
{% endblock %} |