summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-27 17:48:18 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-27 17:48:18 +0200
commitfa132310bf61c115907e5c237333207f308b1de4 (patch)
treec9ac79b0818369193e3564a9fbdadb79423c29e5 /templates
parent8ba2c0def848f72c6c817fdeb0cc220d3da0d8ee (diff)
downloadaCms-fa132310bf61c115907e5c237333207f308b1de4.tar.gz
aCms-fa132310bf61c115907e5c237333207f308b1de4.tar.bz2
rough scetch of register user (work in progress)
Diffstat (limited to 'templates')
-rw-r--r--templates/confirm_register.tmpl23
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/confirm_register.tmpl b/templates/confirm_register.tmpl
new file mode 100644
index 0000000..8b41290
--- /dev/null
+++ b/templates/confirm_register.tmpl
@@ -0,0 +1,23 @@
+<% c++ #include "user_content.hpp" %>
+<% skin view %>
+<% view confirm_register uses content::user extends master %>
+
+<% template title() %>
+ <% include master::title() %> :: Registration code verification
+<% end %>
+
+<% template page_content() %>
+ <div>
+ You should receive an email containing a code soon. Enter it below:
+ <form method="post" action=""><% csrf %>
+ <table>
+ <% form as_table confirm_register %>
+ </table>
+ </form>
+
+ If you entered the correct code, you can try to log in.
+ </div>
+<% end template %>
+
+<% end view %>
+<% end skin %>