-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
63 lines (57 loc) · 2.26 KB
/
form.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
<!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>Registration Form</title>
<link rel="stylesheet" href="form.css">
</head>
<body>
<video src="images/baker1.mp4" class="vid-bg" autoplay loop muted></video>
<div class="main">
<div class="register">
<h2>Enter Your Details</h2>
<form action="connect.php" method="POST" id="register">
<label>First Name :</label>
<br>
<input type="text" name="firstname" id="firstname" placeholder="Enter Your First Name">
<br><br>
<label>Last Name :</label>
<br>
<input type="text" name="lastname" id="lastname" placeholder="Enter Your Last Name">
<br><br>
<label>Email : </label>
<br>
<input type="email" name="email" id="email" placeholder="Enter Your Valid Email">
<br><br>
<label>Address : </label>
<br>
<input type="text" name="address" id="address" placeholder="Enter Your Address">
<br>
<br>
<label>Item : </label>
<br>
<select name="item" id="item">
<option value="Birthday Cake">Birthday Cake</option>
<option value="Wedding Cake">Wedding Cake</option>
<option value="Poppy Bagel">Poppy Bagel</option></select>
<br><br>
<label>Quantity</label>
<br>
<select name="quantity" id="quantity">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option></select>
<br>
<br>
<div class="btn">
<input type="submit" value="Submit" name="submit" id="submit">
</div>
</form>
</div>
</div>
</body>
</html>