-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·28 lines (24 loc) · 965 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<meta>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="login-style.css">
<title>Acadia Solutions</title>
</head>
<body>
<div class="loginOption" id="loginOption">
<form action="submit" id="login-form" class="login-form">
<div class="login" id="login">
<h2 class="login-title" id="login-title">Acadia Solutions Login</h2>
<input type="email" id="email-input" class="input" placeholder="Enter Email Here">
<input type="password" id="password-input" class="input" placeholder="Enter password here">
<button id="submit-btn" class="submit-btn">Submit</button>
</div>
</form>
</div>
<script src="https://momentjs.com/downloads/moment.js"></script>
<script src="script.js"></script>
</body>
</html>