Renamed templated/registration to templated/account

This commit is contained in:
Kristofers Solo
2023-06-27 12:35:51 +00:00
parent 726443ee52
commit e087399f25
14 changed files with 23 additions and 71 deletions

View File

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