summaryrefslogtreecommitdiff
path: root/static/website/templates/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/website/templates/login.html')
-rw-r--r--static/website/templates/login.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/static/website/templates/login.html b/static/website/templates/login.html
new file mode 100644
index 0000000..14274f7
--- /dev/null
+++ b/static/website/templates/login.html
@@ -0,0 +1,46 @@
+{% 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">
+ <h2><strong>Login<br/></h2><br/>
+ <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
+ <!-- Start form -->
+ <form>
+ <div class="form-group">
+ <label for="exampleInputEmail1">Email address</label>
+ <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
+ </div>
+ <div class="form-group">
+ <label for="exampleInputPassword1">Password</label>
+ <input type="password" class="form-control" name="password" id="password" placeholder="Password">
+ </div>
+ <div class="form-check">
+ <button class="btn btn-info" type="button" name="showpassword" id="showpassword" value="Show Password">Show password</button>
+ <button type="submit" class="btn btn-primary">Submit</button>
+ </div>
+
+ </form>
+
+
+ <!-- End form -->
+ </div>
+
+
+
+ </div>
+ </div>
+</section>
+ {% endblock %}
+
+
+ {% include 'footer.html' %}
+ </body>
+</html>