-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.18 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.18 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
<!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="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<link rel="stylesheet" href="login.css">
<title>To do list</title>
</head>
<body>
<div class="login-container">
<form action="" onsubmit="return validate(callback)">
<img src="./images/undraw_profile_pic_ic-5-t.svg" alt="">
<h2>Login</h2>
<div class="input-div one">
<div class="i">
<i class="fas fa-user"></i>
</div>
<input type="text" id="username" placeholder="Enter user name" >
</div>
<div class="input-div two">
<div class="i">
<i class="fas fa-lock"></i>
</div>
<input type="password" id="password" placeholder="Enter the password" >
</div>
<input type="submit" class="btn" value="login">
</form>
</div>
<script src="./script.js"></script>
</body>
</html>