mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
Add auth pages
This commit is contained in:
15
breccia_mapper/templates/registration/login.html
Normal file
15
breccia_mapper/templates/registration/login.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends 'base.html' %}
|
||||
{% load bootstrap4 %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Login</h1>
|
||||
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
<input type="hidden" name="next" value="{{ next }}">
|
||||
<input type="submit" class="btn btn-info" value="Login">
|
||||
{% endbuttons %}
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user