-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (45 loc) · 2.24 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
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<title>MPT Signup</title>
<link rel="shortcut icon" href="{% static 'content/favicon.png' %}" type="image/x-icon">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Local Stylesheet -->
<link href="{% static 'css/login.css' %}" rel="stylesheet">
</head>
<body class="">
<div class="logo">
<a class="" href="#">
<img style="border-radius: 10px;" src="{% static 'content/logo.png' %}" width="60" height="60" alt="">
</a>
</div>
<main class="form-signin">
<form action = "/" method="POST">
<h1 class="h3 mb-3">Welcome to MPT</h1>
<p style="opacity: 0.7;">Sign in by entering information below</p>
<div class="">
<input type="email" name = "email" class="form-control top" placeholder="Email" required>
</div>
<div class="">
<input type="password" name = "password" class="form-control bottom" placeholder="Password" required>
</div>
<p><a href=""><strong>Forgot password?</strong></a></p>
<label class="checkbox-container" style="opacity: 0.85;font-size: 0.9rem;">
<input type="checkbox" >
<span class="checkmark"></span>
Remember Me
</label>
<button class="w-100 btn btn-md btn-primary" type="submit">Sign in</button>
<p style="opacity: 0.8;">Don't have an account? <a href="html/admin.html"><strong>Sign up</strong></a></p>
</form>
</main>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Local -->
<script src ="{% static 'js/login.js' %}"></script>
</body>
</html>