-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
95 lines (94 loc) · 4.35 KB
/
Index.html
File metadata and controls
95 lines (94 loc) · 4.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Plan your Trip with us</title>
</head>
<body>
<div class="container">
<fieldset>
<legend><h1>Plan your Trip with us</h1></legend>
<form action="index.php" method="post">
<table>
<marquee behavior="scroll" direction="left" scrollamount="5">*😊Please fill all the details carefully*</marquee>
<tr>
<td><label for="name">Name:</label></td>
<td><input type="text" id="name" name="name" placeholder="Your Name" required><br><br></td>
</tr>
<tr>
<td><label for="email">Email:</label></td>
<td><input type="email" id="email" name="email" placeholder="email@gmail.com" required><br><br></td>
</tr>
<tr>
<td><label for="password">Passwoord:</label></td>
<td><input type="password" id="password" name="password" placeholder="password" required></td>
</tr>
<tr>
<td><label for="phone">Phone Number:</label></td>
<td><input type="tel" id="phone" name="phone" placeholder="+91 1234567890" required><br><br></td>
</tr>
<tr>
<td><label for="gender">Your Gender:</label></td>
<td>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label>
<input type="radio" id="Nsay" name="gender" value="Nsay">
<label for="Nsay">Prefer not to say</label>
</td>
</tr>
<tr>
<td><label for="age">Your Age:</label></td>
<td><input type="number" id="age" name="age" placeholder="Your Age" required><br><br></td>
</tr>
<tr>
<td>
<label for="travel">Where do you want to go?</label>
</td>
<td>
<input type="checkbox" id="delhi" name="travel" value="delhi">
<label for="delhi">Delhi</label>
<input type="checkbox" id="mumbai" name="travel" value="mumbai">
<label for="mumbai">Mumbai</label>
<input type="checkbox" id="bangalore" name="travel" value="bangalore">
<label for="bangalore">Bangalore</label>
<input type="checkbox" id="kolkata" name="travel" value="kolkata">
<label for="kolkata">Kolkata</label><br><br>
</td>
<tr>
<td>
<label for="address">Enter your address:</label>
</td>
<td>
<textarea name="address" id="address" cols="25" rows="3" placeholder="Your Address"></textarea><br><br>
</td>
</tr>
<tr>
<td>
<label for="Date of Travel">Date of Travel:</label>
</td>
<td>
<input type="date" id="Date of Travel" name="Date of Travel" required><br><br>
</tr>
<tr>
<td>
<label for="file">Upload Your ID:</label>
</td>
<td>
<input type="file" id="file" name="file" required><br><br>
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center;">
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</td>
</table>
</form>
</fieldset>
</div>
</body>
</html>