forked from noel-sumini/login-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (84 loc) · 4 KB
/
Copy pathindex.html
File metadata and controls
99 lines (84 loc) · 4 KB
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
<!DOCTYPE html>
<html>
<head>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous">
</script>
<link href="styles.css" />
</head>
<body>
<div class="container">
<nav class="navbar navbar-expand-lg bg-body-dark">
<a class="navbar-brand d-flex align-items-center" href="./index.html">
<img
src="https://sesac.seoul.kr/static/common/images/www/common/logo.png"
height="30px"/>
<span style="color: rgb(79, 255, 132)">SeSAC</span>
</a>
<div class="navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Menu#1</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Menu#2</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Menu#3</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" aria-disabled="true">Menu#4</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="vh-200 gradient-custom">
<div class="container py-5 h-200">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-12 col-md-8 col-lg-6 col-xl-5">
<div class="card bg-dark text-white" style="border-radius: 1rem;">
<div class="card-body p-5 text-center">
<div class="mb-md-5 mt-md-4 pb-5">
<h2 class="fw-bold mb-2 text-uppercase">Login</h2>
<p class="text-white-50 mb-5">Please enter your login and password!</p>
<div data-mdb-input-init class="form-outline form-white mb-4">
<input type="email" id="userid" placeholder="User ID" class="form-control form-control-lg" />
</div>
<div data-mdb-input-init class="form-outline form-white mb-4">
<input type="password" id="password" class="form-control form-control-lg" placeholder="Password" />
</div>
<p class="small mb-5 pb-lg-2"><a class="text-white-50" href="#!">Forgot password?</a></p>
<button data-mdb-button-init data-mdb-ripple-init class="btn btn-outline-light btn-lg px-5"
type="submit"
id = "login-button"
onclick="submitForm()"
onkeypress="submitForm">Login</button>
<div class="d-flex justify-content-center text-center mt-4 pt-1">
<a href="#!" class="text-white"><i class="fab fa-facebook-f fa-lg"></i></a>
<a href="#!" class="text-white"><i class="fab fa-twitter fa-lg mx-4 px-2"></i></a>
<a href="#!" class="text-white"><i class="fab fa-google fa-lg"></i></a>
</div>
</div>
<div>
<p class="mb-0">Don't have an account? <a href="#!" class="text-white-50 fw-bold">Sign Up</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
<script src = "script.js"></script>
</html>