summaryrefslogtreecommitdiff
path: root/tmpl/register.tmpl
diff options
context:
space:
mode:
authorKyle McFarland <tfkyle@gmail.com>2018-01-31 00:51:07 -0600
committerKyle McFarland <tfkyle@gmail.com>2018-01-31 00:51:07 -0600
commit61d1aa04d8d44b17bfe6dace90088669fc6c3df8 (patch)
tree7ede15c880e4c41a18cded46fe6d03fb2dc4543b /tmpl/register.tmpl
downloadmcoop-master.zip
mcoop-master.tar.gz
mcoop-master.tar.bz2
Initial importHEADmaster
* Registration system's almost done * Just part way through implementing tasks So not much done yet, but it's a start.
Diffstat (limited to 'tmpl/register.tmpl')
-rw-r--r--tmpl/register.tmpl30
1 files changed, 30 insertions, 0 deletions
diff --git a/tmpl/register.tmpl b/tmpl/register.tmpl
new file mode 100644
index 0000000..f0878e9
--- /dev/null
+++ b/tmpl/register.tmpl
@@ -0,0 +1,30 @@
+{% extends "base.tmpl" %}
+
+{% block title %}Register{% endblock %}
+
+{% block body_js %}
+<script type="text/javascript" src="https://www.google.com/recaptcha/api.js?hl=en"></script>
+ {{- parent() }}
+{% endblock %}
+
+{% block page_contents %}
+ <div class="row">
+ <div class="col-12"><h2>Register for basic membership here</h2></div>
+ <div class="col-12"><hr style="border: 1px solid rgba(0, 0, 0, 1)"/></div>
+ <div class="col-12"><p>this doesn't register you as a full member, you have to confirm your email address and start <a href="contribute.xhtml">Contributing</a> first</p></div>
+ </div>
+ <form action="register.php" method="post">
+ <div class="row">
+ <div class="col-12 col-sm-4 col-md-3 col-lg-2">Username<span style="color: red">*</span></div>
+ <div class="col-12 col-sm-8 col-md-9 col-lg-10"><input type="text" name="username" /></div>
+ <div class="col-12 col-sm-4 col-md-3 col-lg-2">Email Address <span style="color: red">*</span></div>
+ <div class="col-12 col-sm-8 col-md-9 col-lg-10"><input type="email" name="email" /></div>
+ <div class="col-12 col-sm-4 col-md-3 col-lg-2">Password <span style="color: red">*</span></div>
+ <div class="col-12 col-sm-8 col-md-9 col-lg-10"><input type="password" name="passwd" /></div>
+ <div class="col-12 col-sm-4 col-md-3 col-lg-2">Full Name</div>
+ <div class="col-12 col-sm-8 col-md-9 col-lg-10"><input name="fullname" /></div>
+ <div class="offset-sm-2 col-11"><div class="g-recaptcha" data-sitekey="6Le5mkIUAAAAAKBvBdwIqcWd9vVMV2t9YhGxfMGb"></div></div>
+ <div class="col-12"><button class="btn btn-success" type="submit">Register</button></div>
+ </div>
+ </form>
+{% endblock %}