diff options
| author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-07-24 17:00:25 -0400 |
|---|---|---|
| committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-07-24 17:00:25 -0400 |
| commit | 9f18a590819a01017c15169d82763680a72848fb (patch) | |
| tree | 9c781cd677eeae9b1e50e986647e1929e99bdac7 /hyperkitty/templates/register.html | |
| parent | ae77d9901e2a466622818f95d784fb85b5296727 (diff) | |
| download | hyperkitty-9f18a590819a01017c15169d82763680a72848fb.tar.gz hyperkitty-9f18a590819a01017c15169d82763680a72848fb.tar.xz hyperkitty-9f18a590819a01017c15169d82763680a72848fb.zip | |
Packaging hyperkitty
Diffstat (limited to 'hyperkitty/templates/register.html')
| -rw-r--r-- | hyperkitty/templates/register.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hyperkitty/templates/register.html b/hyperkitty/templates/register.html new file mode 100644 index 0000000..1e96907 --- /dev/null +++ b/hyperkitty/templates/register.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block content %} + +<form action="" method="post" class="login mm_clear"> + {% csrf_token %} + {{ form.as_p }} + <input type=hidden name=next value={{ next }}> + <div class="field"> + <button class="btn btn-primary" type="submit"> + {% trans "Register" %} + </button> + </div> +</form> + +{% endblock %} |
