-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 899 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
<!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">
<title>login form</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="continer">
<form id="form">
<div class="tittle text-center">login</div>
<input class="username style-input " id="usernaame-input" type="text" name="username" value="" placeholder="username" required>
<br>
<input class="password style-input " id="password" type="password" name="pssword" value="" placeholder="password" required>
<div class="go text-center" id="go">go</div>
</form>
<div class="emptyfieldWarning" id="emptyfieldWarning"></div>
</div>
<script src="login.js"></script>
</body>
</html>