forked from gauriiighadge/HactoberFest2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (54 loc) · 2.51 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
66
67
68
69
<!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>Sign Up Page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<form action="" class="form" id="form">
<div class="form-control">
<label>First Name</label>
<input type="text" id="username" placeholder="Enter First Name" autocomplete="off" required>
</div>
<div class="form-control">
<label>Last Name</label>
<input type="text" id="lastname" placeholder="Enter Last Name" autocomplete="off" required >
</div>
<div class="form-control">
<label>Email</label>
<input type="text" id="email" placeholder="[email protected]" autocomplete="off" required>
</div>
<div class="form-control">
<label>Password</label>
<input type="password" id="password" placeholder="Enter Your Password" autocomplete="off">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<div class="form-control">
<label>Confirm Password</label>
<input type="password" id="cpassword" placeholder="Confirm Password" autocomplete="off">
<i class="fas fa-check-circle"></i>
<i class="fas fa-exclamation-circle"></i>
<small>Error Message</small>
</div>
<button class="button signup__submit">
<span class="button__text">Sign Up</span>
</button><br>
<div class="social-media">
<a href=""><i class="fa-brands fa-square-instagram"></i></a>
<a href=""><i class="fa-brands fa-linkedin"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-github"></i></a>
</div>
</form>
</div>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="script.js"></script>
</body>
</html>