summaryrefslogtreecommitdiff
path: root/static/website/templates/user-register.html
diff options
context:
space:
mode:
authorPrashant S2018-08-23 17:03:41 +0530
committerGitHub2018-08-23 17:03:41 +0530
commitb0b42e5553658fbd3aee833b555435a4401d208c (patch)
treee9fd275a3fd808f9c25a1f343210c6e997e22a38 /static/website/templates/user-register.html
parente5eeecc7abdce65aa81d6b68ba4304068ee1a5ca (diff)
parent756d9e437cc0e573558046d7ad2b1e629487865d (diff)
downloadSciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.tar.gz
SciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.tar.bz2
SciPy2018-b0b42e5553658fbd3aee833b555435a4401d208c.zip
Merge pull request #8 from prashantsinalkar/development
added new views
Diffstat (limited to 'static/website/templates/user-register.html')
-rwxr-xr-xstatic/website/templates/user-register.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/static/website/templates/user-register.html b/static/website/templates/user-register.html
new file mode 100755
index 0000000..c5ea301
--- /dev/null
+++ b/static/website/templates/user-register.html
@@ -0,0 +1,43 @@
+{% extends "base.html" %}
+{% load static %}
+<div class="se-pre-con"></div>
+{% block content %}
+ <section id="register" class="section register">
+ <div class="container">
+ <center>
+ <h2>Register</h2>
+ </center>
+ {% if email_registered %}
+ <center>
+ <div class="alert" style="width:300px;height:50px;">
+ <a class="close" data-dismiss="alert" href="#">&times;</a>
+ <p>Email ID is already registered !</p>
+ </div>
+ <p style="line-height:5px;">Have you already logged in using social logins ?</p>
+ <p style="line-height:5px;">or</p>
+ <p style="line-height:5px;"><a href="{% url 'website:forgotpassword' %}">Click Here</a> if you forgot your username or password</p>
+ </center>
+ {% endif %}
+ {% if registration_complete %}
+ <p> Your Account is Created Successfully !</p>
+ {% endif %}
+ <!-- <div class = "col-md-7">
+ <div id = "my_form"> -->
+ <form action="" method="POST">
+
+ {% csrf_token %}
+ {% for field in form %}
+ <p>{{ field.label}}
+ {% if field.field.required %} <span style="color:red;">*</span> {% endif %}
+ {{ field }}
+ </p>
+ <a style="color:red; ">{{ field.errors }}</a>
+ {% endfor %}
+ <br>
+ <button class="btn btn-primary" type="submit" >SignUp</button>
+ <a class="btn btn-primary" href="{% url 'website:cfp' %}" style="text-decoration: none;">I have an account</a>
+ <!-- </div> -->
+ </form>
+ <!--</div>-->
+ </section>
+{% endblock %}