mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
14 lines
382 B
HTML
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 %}
|