-
Notifications
You must be signed in to change notification settings - Fork 0
/
date2.html
94 lines (89 loc) · 3.26 KB
/
date2.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
<!DOCTYPE html>
<html>
<head>
<title>date2</title>
<style type="text/css">
fieldset{background: lightyellow;border:10px solid yellow;margin-bottom:10px;width: 720px}
label{width: 180px;display: inline-block;text-align: right;text-align: top;}
#check{width: auto;}
#ranrig{background-color: purple; width: 50px; color: white;text-align: center;}
#ranlef{background-color: crimson;color: white;text-align: center;width: 50px}
#textarea{width: 360px;height: 50px;}
label:hover { font-size:25px }
input:hover { font-size:25px }
</style>
</head>
<body>
<form action="https://ihome.ust.hk/~rossiter/cgi-bin/show_everything.php" method="get" enctype="multipart/form-data">
<h1>Please Enter Your Details For Our Dating Website!</h1>
<fieldset>
<legend>Your Face</legend>
<label for="filetoupload">Your image:</label>
<input type="file" name="filetoupload" required><br>
<label for="image">image preview:</label>
<img id="preview">
</fieldset>
<fieldset>
<legend>Your General Details</legend>
<label for="txt1">Name:</label>
<input type="text" name="txt1" id="txt1" placeholder="Your full name" required>
<br>
<label>Gender:</label>
<input type="radio" name="Gender" id="checkbox" value="Male" required>
<label for="Male" id="check">Male</label>
<input type="radio" name="Gender" id="checkbox" value="Female" required>
<label for="Female" id="check">Female</label>
<br>
<label for="txt2">Age:</label>
<input type="text" name="txt2" id="txt2" value="18">
<br>
<label for="date1">Date of birth:</label>
<input type="date" name="date1" id="date1" placeholder="dd/mm/yyyy">
<br>
<label for="color">Favourite color:</label>
<input type="color" name="color" id="color" value="black">
<br>
<label for="drop">Which country:</label>
<select name="drop" id="drop">
<option value="1"></option>
<option value="2">India</option>
<option value="3">UK</option>
<option value="4">France</option>
<option value="5">Australia</option>
<option value="6">USA</option>
</select>
</fieldset>
<fieldset>
<legend>Your Indicators</legend>
<label id="ranl">Height:<label id="ranlef">Short</label></label>
<input type="range" name="range1" id="range" min="0" max="100">
<label id="ranrig">Tall</label>
<br>
<label id="ranl">Salary:<label id="ranlef">Poor</label></label>
<input type="range" name="range2" id="range" min="0" max="100">
<label id="ranrig">Rich</label>
</fieldset>
<fieldset>
<legend>Your Contact Information</legend>
<label for="email">Email:</label>
<input type="email" name="email" id="email" required>
<br>
<label for="mobile">Mobile:</label>
<input type="tel" name="mobile" id="mobile">
<br>
<label for="textarea">Address:</label>
<textarea name="textarea" id="textarea"></textarea>
<br>
<label for="checkbox">Method to contact you:</label>
<input type="checkbox" id="check" name="checkbox">
<label for="checkbox1" id="check">Email</label>
<input type="checkbox" id="check" name="checkbox">
<label for="checkbox2" id="check">Whatsapp</label>
<input type="checkbox" id="check" name="checkbox">
<label for="checkbox3" id="check">In-app chat</label>
</fieldset>
<input type="submit" value="Submit">
</form>
<script src="https://www.cse.ust.hk/~rossiter/dating_web_site.js"></script>
</body>
</html>