mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
12 lines
320 B
HTML
12 lines
320 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}Sign Up{% endblock %}
|
|
{% block content %}
|
|
<form method="post">
|
|
{% csrf_token %}{{ form }}
|
|
<p>
|
|
Have an account? Login <a href="{% url 'login' %}">Here</a>!
|
|
</p>
|
|
<button type="submit">Register</button>
|
|
</form>
|
|
{% endblock %}
|