-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicDatingWebsite.html
More file actions
74 lines (63 loc) · 2.35 KB
/
BasicDatingWebsite.html
File metadata and controls
74 lines (63 loc) · 2.35 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
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Dating Website</title>
</head>
<body>
<h1>Please Enter Your Details For our Dating Website</h1>
<form method="post" enctype="multipart/form-data" action="https://ihome.ust.hk/~rossiter/cgi-bin/show_everything.php">
<fieldset>
<legend>Your Face</legend>
Your image: <input type="file" required> <br>
<img id="preview">Image preview:</img>
</fieldset>
<br>
<fieldset>
<legend>Your General Details</legend>
<label for="text" required>Name</label>
<input type= "text" required></input> <br>
<label for="text" required>Gender</label>
<input type="radio" name="Male" required>Male</input>
<input type="radio" name="Female" required>Female</input> <br>
<label for="age" required>Age:</label>
<input type="number" name="age"></input> <br>
<label for="Date of Birth">Date of Birth:</label>
<input type="date" name="DOB"/> <br>
<label for="Favorite color:">Favorite color:</label>
<input type="color" name="color"/> <br>
<label for="Which country:">Which country:</label>
<input type="select" name="country"/>
<label for="Bus Type">Bus type</label>
<select>
<option value="" selected="selected"></option>
<option value="USA">USA</option>
<option value="UK">UK</option>
<option value="RUSSIA">RUSSIA</option>
<option value="FINLAND">FINLAND</option>
<option value="BELARUS">BELARUS</option>
</select>
</fieldset>
<br>
<fieldset>
<legend>Your indicators</legend>
<label for="Favorite color:">Height:Short</div><input type="range" min="0" max="100">Tall<br>
<label for="Favorite color:">Salary:Poor</div><input type="range" min="0" max="100">Rich
</fieldset>
<fieldset>
<legend>Your Contact Information</legend>
<label for="email" required>Email</label>
<input type="email" name="email"></input> <br>
<label for="telephone">Mobile</label>
<input type="tel" name="Mobile"> </input><br>
<label for="email">Address</label>
<textarea></textarea><br>
<label for="contacting">Method to contact you</label>
<input type="checkbox" name="contact_email"> Email
<input type="checkbox" name="contact_whatsapp"> Whatsapp
<input type="checkbox" name="contact_chat"> In-app chat
</fieldset>
</br>
<input type="submit" value="SUBMIT"/>
</form>
</body>
</html>