-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst1.html
99 lines (87 loc) · 4.19 KB
/
first1.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<html>
<head>
<title>
</title>
</head>
<body>
<a href="#"><img src="http://www.clker.com/cliparts/a/0/e/6/1366372877556929908dating.svg.med.png" alt="Dating Home" width="70" height="70"></a>
<h1>WELCOME ALL CULTURED AND CATs on shubhamdatingwebsite.com </h1>
<h2>Please Enter Your Details For Our Dating Website!</h2>
<form action="" method="post" enctype="multipart/form-data">
<fieldset class="fieldset">
<legend>Your profile</legend>
<label for="image">Your image: </label>
<input type="file" name="fileToUpload" required>
</fieldset>
<fieldset>
<legend>Your General Details</legend>
<label for="name">Name: </label>
<input type="text" name="name" required>
<br>
<label for="gender">Gender: </label>
<input type="radio" name="gender" value="male" required> Male
<input type="radio" name="gender" value="female" required> Female
<br>
<label for="age">Age: </label>
<input type="number" name="age" required>
<br>
<label for="birthday">Date of birth: </label>
<input type="date" name="birthday">
<br>
<label for="color">Favorite color: </label>
<input type="color" name="color">
<br>
<label for="country">Which country: </label>
<select name="countries">
<option value=""></option>
<option value="india">india</option>
<option value="USA">USA</option>
<option value="bangladesh">bangladesh</option>
<option value="nepal">Nepal</option>
<option value="sri lanka ">Sri lanka </option>
</select>
<fieldset>
<legend>Your Indicators</legend>
<label for="height">Height: </label>
<span class="left"> Short </span>
<input type="range" min="0" max="100" value="50" name="height"> <span class="right">Tall</span>
<br>
<label for="Face Beauty">Face Beauty: </label>
<span class="left"> moderate </span>
<input type="range" min="0" max="100" value="50" name="FAce Beauty"> <span class="right"> cute/Handsome</span>
<br>
</fieldset>
<label for="Relationship Status ">Relationship Status : </label>
<input type="radio" name="Relationship Status" value="Single" required> Single
<input type="radio" name="Relationship Status" value="mingle" required> mingle
<br>
<label for="had you been ever in relationship ">had you been ever in relationship : </label>
<input type="radio" name="had you been ever in relationship" value="yes" required>yes
<input type="radio" name="had you been ever in relationship" value="No" required>No
<br>
<label for=" choose a name of boy/girl whom do you like the most">choose a name of boy/girl whom do you like the most: </label>
<input type="text" name="" required>
<br>
<label for=" ya fir aap ke liye ye sab moh maya hai">: ya fir aap ke liye ye sab moh maya hai</label>
<input type="text" name="" required>
</fieldset>
<fieldset>
<legend>Your Contact Information</legend>
<label for="email">Email: </label>
<input type="email" name="email" required>
<br>
<label for="mobile">Mobile: </label>
<input type="tel" name="mobile">
<br>
<label for="address">Address: </label>
<textarea rows="4" cols="50" name="address" placeholder="Input your address here..."></textarea>
<br>
<label for="contact_method" id="method">Method to contact you: </label>
<input type="checkbox" name="method1" value="email"> Email
<input type="checkbox" name="method2" value="whatsapp"> Whatsapp
<input type="checkbox" name="method3" value="facebook"> facebook id
</fieldset>
<input type="submit" value="Submit">
</form>
</body>
</html>