arrowcounter/user/templates/registration/login.html

24 lines
515 B
HTML

{% extends "base.html" %}
{% load static %}
{% block style %}
<link rel="stylesheet" href="{% static "css/user.css" %}">
{% endblock %}
{% block title %}Login{% endblock %}
{% block content %}
<h1 class="center">Login</h1>
<form id="login-form" method="post" class="col s12">
{% csrf_token %}
<div class="card">
<div class="card-content">
{{ form.as_p }}
</div>
<div class="card-action">
<a href="#"><button type="submit">Login</button></a>
</div>
</div>
</form>
{% endblock %}