12 lines
336 B
HTML
12 lines
336 B
HTML
<!DOCTYPE html>
|
|
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>Login</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Log In" />
|
|
</form>
|
|
<br>
|
|
<a href="{% url 'signup' %}">Sign Up!</a> | <a href="{% url 'password_reset' %}">Forgot Password?</a>
|
|
{% endblock %}
|