-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 961 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
29
30
<!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">
<link rel="stylesheet" href="./css/login.css">
<script src="./js/login.js" defer></script>
<title>Green Login page</title>
</head>
<body>
<div class="wrapper">
<h2>LOGIN</h2>
<form id="auth_form" class="auth_form">
<div class="input_box">
<label for="username">Username : </label>
<input type="text" name="username" id="username" placeholder="username ..."/>
</div>
<div class="input_box">
<label for="password">Password : </label>
<input type="password" name="password" id="password" placeholder="password ...">
</div>
<input type="submit" value="SUBMIT" />
</form>
</div>
</body>
</html>