Added login file

This commit is contained in:
Kristofers Solo 2023-03-27 21:44:30 +03:00
parent 88701203ec
commit dcf849257e

View File

@ -0,0 +1,13 @@
{% extends "layout.html" %}
{% load static %}
{% block title %}{{ title }}{% endblock %}
{% block meta %}{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}{{ form }}
<p>
Don't have an account? Create one <a href="{% url 'signup' %}">Here</a>!
</p>
<button type="submit">Login</button>
</form>
{% endblock %}