24 lines
528 B
HTML
24 lines
528 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block style %}
|
|
<link rel="stylesheet" href="{% static "css/user.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="center">Register</h1>
|
|
<form method="post">
|
|
<div class="col s12 card" id="registration-form">
|
|
<div class="card-content">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
</div>
|
|
<div class="card-action">
|
|
<a href="#"><button type="submit">Register</button></a>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|