-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (63 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="CSS/homestyle.css" />
<title>Kaizen Login</title>
</head>
<body>
<div class="row">
<div class="card boxShadowLogin vertical-center col-10 offset-1 col-md-6 offset-md-3 col-lg-4 offset-lg-4">
<h1>Log In</h1>
<script> if(typeof alert != 'undefined') {
alert.forEach((error) => {
console.log(error);
})
}
</script>
<form
action="/login"
method="post"
id="LoginForm"
>
<label for="username" class="form-label">Username</label>
<input
placeholder="user123"
class="form-control"
type="text"
name="username"
id="username"
/>
<br />
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password">
<br />
<div class="center">
<input type="submit" class="primaryBtn btn mb-3" value="Sign in" />
</div>
</form>
<div class="center">
<form action="/register" method="get">
<input class="secondaryBtn btn mb-3" type="submit" value="Don't have an account? Register">
</form>
</div>
</div>
</div>
<!-- JavaScript Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"
></script>
</body>
</html>
<!---->