forked from AustinSturm/cop4331
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 loc) · 2.59 KB
/
index.html
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
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="/static/mainapp/main.js"></script>
<link rel="stylesheet" href="/static/mainapp/w3.css">
<link rel="stylesheet" href="/static/mainapp/custom.css">
<title>Contact Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div zclass = "w3-main" id="main">
<div id="nav-top" class="w3-bar w3-border w3-teal">
<button class="w3-button w3-teal w3-large w3-bar-item nav-top-highlight" onclick="navflip()">Contacts</button>
<div class="dropdown w3-dropdown-hover w3-right">
<a href="#" class="w3-bar-item w3-button w3-large">{{ user.username }}</a>
<div class="w3-dropdown-content w3-bar-block w3-border" style="right:0; top: 44px">
<a href="logout/" class="w3-bar-item w3-button nav-top-highlight">Logout</a>
</div>
</div>
</div>
<div id="body">
<div id="nav-sidebar" class="w3-sidebar w3-bar-block w3-card-2 w3-animate-left" style="display:none">
<!-- fiil with contacts dynamically if logged in-->
<a href="#" class="w3-bar-item w3-button w3-border">Alexander T</a>
<a href="#" class="w3-bar-item w3-button w3-border">Alert z</a>
<a href="#" class="w3-bar-item w3-button w3-border">Big Tan</a>
<a href="#" class="w3-bar-item w3-button w3-border">Money G</a>
</div>
<div id="content" class="w3-animate-left w3-container">
<!-- Login form begin -->
<div class="w3-container contentCenter" style="max-width: 800px;">
<form class='w3-padding w3-card-4 w3-light-grey' method="post" action="{% url 'login' %}">
<label>Username</label>
<input class="w3-input" type="text">
<label>Password</label>
<input class="w3-input" type="text">
<input class="w3-button w3-border w3-margin-top w3-blue w3-hover-blue-grey" type="submit" value="Login" />
<input type="hidden" name="next" value="{{ next }}" />
<p class ='w3-small w3-margin-left w3-text-blue' style='display:inline'>
<a href= "/forgotten">Forgot Password </a>
</p>
</form>
</div>
<!-- Login form end -->
</div>
</div>
</div>
</body>