Initial commit
This commit is contained in:
commit
d5c605e4ad
22 changed files with 1372 additions and 0 deletions
14
templates/registration/register.html
Normal file
14
templates/registration/register.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Create an account</h2>
|
||||
|
||||
<form action="/register/" method="post">
|
||||
{% csrf_token %}
|
||||
{{ form.as_p }}
|
||||
|
||||
<div id="button_center">
|
||||
<input type="submit" value="Create Your Drinkkit Account" class="button large" style="margin-bottom: 10px;">
|
||||
</div>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in a new issue