RandomSec/MUOR/templates/registration/login.html

13 lines
286 B
HTML
Raw Normal View History

2022-01-23 22:34:16 +01:00
<!-- 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 }}
2022-01-25 18:48:45 +01:00
<button class="btn btn-light" type="submit">Log In</button>
2022-01-23 22:34:16 +01:00
</form>
{% endblock %}