fnp
/
cas.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add basic functionality for self-registration.
[cas.git]
/
src
/
accounts
/
templates
/
account
/
register.html
1
{% extends "base.html" %}
2
{% load i18n %}
3
4
{% block content_enclosed %}
5
<h1>{% trans "Sign-up" %}</h1>
6
<form id="register-form" method="post" action="{% url 'account_register' %}">
7
{% csrf_token %}
8
{{ form.as_p }}
9
<p><input type="submit" value="{% trans 'Sign-up' %}" /></p>
10
</form>
11
{% endblock %}