-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 2.57 KB
/
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
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
<!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://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="stylesheet" href="./assests/style.css">
<script src="./assests/script.js" defer></script>
<title>EDSA monthly project</title>
</head>
<body>
<div class="container">
<div class="forms">
<div class="form signup">
<span class="title">Sign Up</span>
<form action="#" id="form-input">
<div class="input-field">
<input type="text" placeholder="Enter your name" required id="name-input">
<i class="uil uil-user"></i>
</div>
<div class="input-field">
<input type="email" placeholder="Enter your email" required id="email-input">
<i class="uil uil-envelope icon"></i>
</div>
<div class="input-field">
<input type="password" class="password" placeholder="Create your password" required
id="password-input">
<i class="uil uil-lock icon"></i>
</div>
<div class="input-field">
<input type="password" class="password" placeholder="Confirm password" required
id="confirm-password-input">
<i class="uil uil-lock icon"></i>
<i class="uil uil-eye-slash showHidePw"></i>
</div>
<div class="checkbox-text">
<div class="checkbox-content">
<input type="checkbox" id="termCon">
<label for="termCon" class="text">I accepted all terms and conditions</label>
</div>
</div>
<div class="input-field button">
<input type="button" id="submitBtn" value="Submit">
</div>
</form>
<div class="login-sign-up">
<span class="text">Already a member?
<a href="?" class="text login-link">Login Now</a>
</span>
</div>
</div>
</div>
</div>
<section>
<div id="results"></div>
</section>
</body>
</html>