-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
49 lines (32 loc) · 1.77 KB
/
signup.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
<!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</title>
<link rel="stylesheet" href="signup.css">
</head>
<body style='background-image:url("https://images.unsplash.com/photo-1541701494587-cb58502866ab?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8YWJzdHJhY3R8ZW58MHx8MHx8&ixlib=rb-1.2.1&w=1000&q=80") ';>
<div class="bgimg">
<form class="signupfrm">
<h3 id="header">Signup</h3>
<p id="heading"> Create an account today, It's Free And Only Takes a Minute</p>
<hr>
<label for="fname">First Name:</label>
<input type="text" name="fname" id="fname" placeholder="eg : Yash" required>
<label for="lname">Last Name :</label>
<input type="text" name="lname" id="lname" placeholder="eg : Naam" required><br>
<label for="username">Enter Username :</label>
<input type="text" name="username" id="username" placeholder="eg : yashnaam" required><br>
<label for="email">Enter Email - Id :</label>
<input type="email" name="email" id="email" placeholder="eg : yashnaam@mail.com" required ><br>
<label for="password">Password : </label>
<input type="password" name="password" id="password" placeholder="eg : Xudfbi456" required ><br>
<label for="cpassword">Confirm Password:</label>
<input type="password" name="cpassword" id="cpassword" placeholder="eg : Xudfbi456" required><br>
<input type="submit" value="SIGN UP" id="submit"><br>
</form>
</div>
</body>
</html>