-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform2.html
More file actions
executable file
·114 lines (111 loc) · 4.56 KB
/
form2.html
File metadata and controls
executable file
·114 lines (111 loc) · 4.56 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kuza Forms - Sell Anywhere, Grow your Business</title>
<link rel="stylesheet" href="css/custom/style.css">
<link rel="stylesheet" href="css/responsive/responsive.css">
<link rel="stylesheet" href="css/helper.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div class="container">
<div class="row">
<form action="" method="POST" role="form">
<div id="leftPage" class="col-lg-7 pd-tb-mini pd-r-50">
<h3 class="mr-b-20">Customer information</h3>
<div class="row">
<div class="form-group col-md-6">
<label for="" class="control-label">First Name</label>
<input type="text" class="form-control" id="" placeholder="Enter your First Name">
</div>
<div class="form-group col-md-6">
<label for="" class="control-label">Last Name</label>
<input type="text" class="form-control" id="" placeholder="Enter your Last Name">
</div>
<div class="form-group col-md-6">
<label for="" class="control-label">Email Address</label>
<input type="text" class="form-control" id="" placeholder="Enter your Email Address">
</div>
<div class="form-group col-md-6">
<label for="" class="control-label">Phone #</label>
<input type="text" class="form-control" id="" placeholder="Enter your Phone #">
</div>
</div>
<hr>
<h3 class="mr-b-20">Address / Shipping Information</h3>
<div class="row">
<div class="form-group col-md-12">
<label for="" class="control-label">Company Name</label>
<input type="text" class="form-control" id="" placeholder="Enter your Company Name">
</div>
<div class="form-group col-md-12">
<label for="" class="control-label">Address</label>
<input type="text" class="form-control" id="" placeholder="Enter your Address">
</div>
<div class="form-group col-md-6">
<label for="" class="control-label">City / Town</label>
<input type="text" class="form-control" id="" placeholder="Enter your City / Town">
</div>
<div class="form-group col-md-6">
<label for="" class="control-label">Region</label>
<input type="text" class="form-control" id="" placeholder="Enter your Region">
</div>
</div>
</div>
<div id="rightPage" class="col-lg-5">
<h3 class="mr-b-20">Booking Information</h3>
<div class="row">
<div class="form-group col-md-8">
<label for="" class="control-label">Purpose</label>
<input type="text" class="form-control" id="" placeholder="Purpose of Booking">
</div>
<div class="form-group col-md-4">
<label for="" class="control-label">People #</label>
<input type="number" class="form-control" id="" placeholder="# People">
</div>
<div class="form-group col-md-6">
<label for="" class="control-label">Event Date</label>
<input type="date" class="form-control" id="" placeholder="Event Date">
</div>
<div class="form-group col-md-3">
<label for="" class="control-label">Start Time</label>
<input type="time" class="form-control" id="">
</div>
<div class="form-group col-md-3">
<label for="" class="control-label">End Time</label>
<input type="time" class="form-control" id="">
</div>
</div>
<h4 class="mr-tb-20">Select Venue</h4>
<div class="row">
<div class="form-group">
<div class="col-md-6 mr-b-10">
<label class="radio-inline"><input type="radio" name="venue" checked>Roof Top: Ghc 2,000 (8hrs)</label>
</div>
<div class="col-md-6 mr-b-10">
<label class="radio-inline"><input type="radio" name="venue">Roof Top: Ghc 1,000 (4hrs)</label>
</div>
<div class="col-md-6 mr-b-10">
<label class="radio-inline"><input type="radio" name="venue">Lecture Hall: Ghc 800 (8hrs)</label>
</div>
<div class="col-md-6 mr-b-10">
<label class="radio-inline"><input type="radio" name="venue">Lecture Hall: Ghc 500 (4hrs)</label>
</div>
</div>
</div>
<hr class="mr-tb-20">
<div class="row">
<div class="form-group col-md-12 mr-t-20 text-center">
<button type="submit" class="btn btn-lg btn-primary">Book Venue</button>
</div>
</div>
<div class="bg-gray1 pd-30 mr-t-20 rd-5">
<strong>NB:</strong>This is a sample design of the data collection service. Each section of the form can be modified or customized to your requirements of your business.
</div>
</div>
</form>
</div>
</div>
</body>
</html>