friendsmap/map/templates/registration/login.html

15 lines
503 B
HTML
Raw Normal View History

2019-03-02 15:49:05 +01:00
{% extends 'map/base.html' %}
{% load crispy_forms_tags %}
2019-03-02 15:53:27 +01:00
{% block h1 %}Login{% endblock %}
2019-03-02 15:49:05 +01:00
{% block content %}
2019-03-02 15:53:27 +01:00
<p>Please authenticate before accessing the map.</p>
2019-03-02 15:49:05 +01:00
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" class="btn btn-primary"><i class="fas fa-sign-in-alt"></i> Login</button>
<a href="{% url 'signup' %}" class="btn btn-secondary"><i class="fas fa-user-plus"></i> I don't have an account</a>
2019-03-02 15:49:05 +01:00
</form>
{% endblock %}