diff options
author | prashantsinalkar | 2020-03-06 12:00:15 +0530 |
---|---|---|
committer | prashantsinalkar | 2020-03-06 12:00:15 +0530 |
commit | 6db49b04606a01c6352612ea2b7a7785bcfcbffe (patch) | |
tree | 6092eb68cdfe53650f22ac0a89e1768b829ea851 /arduino_blog/templates/login.html | |
parent | fde8470c5e47434df8c854bd3135763062fada12 (diff) | |
download | arduino_projects_website-6db49b04606a01c6352612ea2b7a7785bcfcbffe.tar.gz arduino_projects_website-6db49b04606a01c6352612ea2b7a7785bcfcbffe.tar.bz2 arduino_projects_website-6db49b04606a01c6352612ea2b7a7785bcfcbffe.zip |
added static files
Diffstat (limited to 'arduino_blog/templates/login.html')
-rw-r--r-- | arduino_blog/templates/login.html | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/arduino_blog/templates/login.html b/arduino_blog/templates/login.html deleted file mode 100644 index f9709ab..0000000 --- a/arduino_blog/templates/login.html +++ /dev/null @@ -1,41 +0,0 @@ -{% extends "base.html" %} - -{% load widget_tweaks %} -{% load static %} -{% block content %} - <section id="cfp" class="section cfp jumbotron d-flex justify-content-between"> - <div class="container fluid"> - <p> - <center> - {% if user and not user.is_anonymous %} - <h3>Submit Proposal </h3> - {% else %} - <h3>Login</h3> - {% endif %} - </center> - </p> - {% if registration_complete %} - <center> - <p>Thank You for your registration. You can now log in by clicking - <a href="{% url 'arduino_blog:user_login' %}">here!</a> - </p> - <br/> - <br/> - </center> - {% endif %} - <div class="row" ><div class="col-sm d-flex justify-content-center"> - <form class="bg-info p-4" action="" method="POST"> - {% csrf_token %} - {{ form.as_table }} - <p></p> - <button class="btn btn-success" name ="login" type="submit">Login</button> - <a style="padding-right : 20px;" href="{% url 'arduino_blog:user_register' %}" class="btn btn btn-primary">Create an Account - </a> - <br> - <p><a class="btn btn btn-warning" href="/accounts/forgotpassword/">Forgot Password?</a></p> - </form></div></div> - </div> - </section> - {% endblock %} - - |