Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / register.html @ fc1e2f02

History | View | Annotate | Download (403 Bytes)

1
{% extends "im/base.html" %}
2

    
3
{% block title%}
4
        <h1>Welcome</h1>
5
{% endblock title%}
6

    
7
{% block body %}
8
<form action={%url register%} method="post">{% csrf_token %}
9
    {{ form.as_p }}
10
<div>
11
    <button type="submit" class="btn primary">Register</button>
12
</div>
13
<input type="hidden" name="code" value="{{ code }}">
14
<input type="hidden" name="next" value="{{ next }}">
15

    
16
</form>
17
{% endblock body %}