blob: 14274f720b38d0fa8308bd55bf87b6250261f5fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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>
|