23 lines
515 B
HTML
23 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 %}
|