Added real registration that prompts for a username.
[zzz-floof.git] / floof / templates / account / register.mako
diff --git a/floof/templates/account/register.mako b/floof/templates/account/register.mako
new file mode 100644 (file)
index 0000000..485012c
--- /dev/null
@@ -0,0 +1,12 @@
+<%inherit file="/base.mako" />
+
+<p>Registering from <strong>${c.identity_url}</strong>.</p>
+
+${h.form(url.current(action='register_finish'), method='POST')}
+<dl class="form">
+    <dt>Username</dt>
+    <dd>${h.text('username', value=c.username)}</dd>
+
+    <dd>${h.submit(None, 'Register')}</dd>
+</dl>
+${h.end_form()}