diff options
author | prashantsinalkar | 2018-08-15 23:19:50 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-08-15 23:19:50 +0530 |
commit | 08f9b4462e1b54494cdafe29f3f8f961d2d2857c (patch) | |
tree | a62214c33eef1e0a3fef1dd94f7727274380c6ed | |
parent | 6a5ff256f0b8c05deb58c1e8682bd7a89f1df411 (diff) | |
download | SciPy2018-08f9b4462e1b54494cdafe29f3f8f961d2d2857c.tar.gz SciPy2018-08f9b4462e1b54494cdafe29f3f8f961d2d2857c.tar.bz2 SciPy2018-08f9b4462e1b54494cdafe29f3f8f961d2d2857c.zip |
added registraions template
-rw-r--r-- | static/website/templates/registration/login.html | 41 | ||||
-rw-r--r-- | static/website/templates/registration/signup.html | 39 |
2 files changed, 80 insertions, 0 deletions
diff --git a/static/website/templates/registration/login.html b/static/website/templates/registration/login.html new file mode 100644 index 0000000..86a90c6 --- /dev/null +++ b/static/website/templates/registration/login.html @@ -0,0 +1,41 @@ +{% load static %} +<!DOCTYPE html> +<html lang="en"> +{% include 'header.html' %} +<body data-spy="scroll" data-target="#site-nav"> +<div class="se-pre-con"></div> + + {% include 'navbar.html' %} + {% block content %} + <section id="login" class="section login"> + <div class="container"> + <div class="row"> + {% if user.is_authenticated %} + Hi {{ user.username }}! +{% else %} + <p>You are not logged in</p> + <a href="{% url 'login' %}">login</a> +{% endif %} +<h2>Login</h2> +<form method="post"> + {% csrf_token %} + {{ form.as_p }} + <button type="submit">Login</button> +</form> + </form> + + + <!-- End form --> + </div> + + + + </div> + </div> +</section> + {% endblock %} + + + {% include 'footer.html' %} + </body> +</html> diff --git a/static/website/templates/registration/signup.html b/static/website/templates/registration/signup.html new file mode 100644 index 0000000..0094401 --- /dev/null +++ b/static/website/templates/registration/signup.html @@ -0,0 +1,39 @@ +<!-- templates/signup.html --> +{% load static %} +<!DOCTYPE html> +<html lang="en"> +{% include 'header.html' %} +<body data-spy="scroll" data-target="#site-nav"> +<div class="se-pre-con"></div> + + {% include 'navbar.html' %} + {% block content %} + <section id="login" class="section login"> + <div class="container"> + <div class="row"> + {% if user.is_authenticated %} + Hi {{ user.username }}! +{% else %} + <p>You are not logged in !!!!!</p> +{% endif %} + <h2>Sign up</h2> + <form method="post"> + {% csrf_token %} + {{ form.as_p }} + <button type="submit">Sign up</button> + </form> + + + </div> + + + + </div> + </div> +</section> + {% endblock %} + + + {% include 'footer.html' %} + </body> +</html> |