-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
65 lines (60 loc) · 1.68 KB
/
signup.html
File metadata and controls
65 lines (60 loc) · 1.68 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
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
<html>
<head>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<button><a href="./index.html">Home Page</a></button>
<h1>Sign up Page</h1>
<!-- Name, Email, Password, Age, Gender, Submit Button -->
<!-- !!Validation -->
<form action="/index.html">
<div>
<label for="user_name">Name:</label>
<input
name="user_name"
required
id="user_name"
placeholder="Your Name"
type="text"
/>
</div>
<div>
<label for="email">Email:</label>
<input
required
name="email"
id="email"
placeholder="Your Email"
type="email"
/>
</div>
<div>
<label for="password">Password:</label>
<input
name="password"
required
id="password"
placeholder="Password"
type="password"
/>
</div>
<div>
<label for="age">Age:</label>
<input name="age" required id="age" placeholder="age" type="number" />
</div>
<!-- Check Box, Radio Button -->
<!-- [x] -->
<!-- [x] -->
<!-- [x] -->
<div>
<label for="male">Male:</label>
<input id="male" name="gender" value="Male" type="radio" />
<label for="female">Female:</label>
<input id="female" name="gender" checked value="Female" type="radio" />
</div>
<input type="submit" value="Sign me UP!!!" />
</form>
<a style="padding: 10px; background: blue">Hello</a>
<!-- http://127.0.0.1:5500/index.html?user_name=ARsalan&email=akkhattak65%40gmail.com&password=asdasd&age=23&gender=Male-->
</body>
</html>