diff options
author | Kyle McFarland <tfkyle@gmail.com> | 2018-01-31 00:51:07 -0600 |
---|---|---|
committer | Kyle McFarland <tfkyle@gmail.com> | 2018-01-31 00:51:07 -0600 |
commit | 61d1aa04d8d44b17bfe6dace90088669fc6c3df8 (patch) | |
tree | 7ede15c880e4c41a18cded46fe6d03fb2dc4543b /tmpl/register.tmpl | |
download | mcoop-master.zip mcoop-master.tar.gz mcoop-master.tar.bz2 |
* 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.tmpl | 30 |
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 %} |