FOSSDB/templates/registration/login.html
Kristofers Solo 6398e844a6 Revert "Deleted account"
This reverts commit fa40a0acc8.
2023-06-26 16:30:54 +00:00

14 lines
382 B
HTML

{% 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 %}