-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
107 lines (101 loc) · 2.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>EDUCAFE</title>
<link rel="stylesheet" href="stylelogin.css" />
<script type="text/javascript">
window.history.forward();
function noBack() {
window.history.forward();
}
</script>
</head>
<body>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicon-16x16.png"
/>
<link rel="manifest" href="./assets/site.webmanifest" />
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
<div class="bg"></div>
<main class="form-signin">
<h1 class="h3">Login</h1>
<form id="myForm" action="">
<div class="form-floating">
<input
type="text"
class="form-control"
id="floatingInput"
placeholder="username"
required
/>
<label for="floatingInput">User name</label>
</div>
<div class="form-floating">
<input
type="password"
class="form-control"
id="floatingPassword"
placeholder="Password"
required
/>
<label for="floatingPassword">Password</label>
</div>
<div class="checkbox mb-3">
<div class="form-check form-switch">
<input
class="form-check-input"
type="checkbox"
value="1"
name="remember_me"
id="rememberMeSwitch"
/>
<label class="form-check-label" for="rememberMeSwitch">
Remember me
</label>
</div>
</div>
<div class="form-floating">
<label for="choices">Choose</label>
<select id="selection" class="form-control" name="choices">
<option value="" selected disabled></option>
<option value="Lecturer">Lecturer</option>
<option value="Student">Student</option>
</select>
</div>
<button class="w-100 btn btn-lg" id="login" type="submit">
Sign in
</button>
<button class="w-100 btn btn-lg" id="create" type="submit">
Create Account
</button>
</form>
</main>
<script src="login.js"></script>
</body>
</html>