-
Notifications
You must be signed in to change notification settings - Fork 0
/
suform.html
75 lines (70 loc) · 3.1 KB
/
suform.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
70
71
72
73
74
75
<!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</title>
<link rel="stylesheet" href="suform.css">
</head>
<body>
<div class="img">
<div class="main">
<div class="signup">
<div class="center">
<h2>Sign Up</h2>
<form id="Sign Up" method="post">
<label>First name: </label>
<br>
<input type="text" name="fname" id="name" placeholder="Enter Your First Name" required><br><br>
<label>Last name: </label>
<br>
<input type="text" name="lname" id="name" placeholder="Enter Your Last Name" required><br><br>
<label>Your Age :</label>
<br>
<input type="number" name="age" id="name" placeholder="How old are you?" required><br><br>
<label>Email: </label>
<br>
<input type="email" name="email" id="name" placeholder="Enter Your Valid Email"
required><br><br>
<label>Mobile No. :</label>
<br>
<input type="number" name="mobile no" id="name" placeholder="Enter Your Mobile no"
required><br><br>
<label>Enter your Password:</label>
<br>
<input type="text" name="password" id="password" placeholder="Enter Your Password"
required><br><br>
<label>Gender:</label>
<br>
<input type="radio" name="gender" id="male">
<span id="male">Male</span>
<input type="radio" name="gender" id="female">
<span id="female">Female</span>
<br><br>
<label>Are You a NGO Member?:</label>
<br>
<input type="radio" name="ngomember" id="yes">
<span id="yes">Yes</span>
<input type="radio" name="ngomember" id="no">
<span id="no">No</span>
<br><br>
<a href="#"></a> <input type="submit" value="Submit" id="submit" name="next"></a>
</form>
<div class="form section">
<p>Have an Account <a>Log in</a></p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>