-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
89 lines (67 loc) · 4.09 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
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
<!--Link the form.css to this page-->
<!--Link the main.js to this page-->
<!-- This is the form page of the application -->
<!--This page is in charge of sending DATA to our firebase firestore, skolly is expected to work closely with the person-->
<!--This page should have a back button similar to that in android, the back button will retun users to the home page -->
<!Doctype html>
<html>
<head>
<title>TOPNOTCH EUPHORIA</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale 1.0">
<link rel="stylesheet" type="text/css" href="styles/form.css">
<link rel="stylesheet" type="text/css" href="styles/font/css/font-awesome.min.css">
</head>
<body>
<section>
<div class="row back"><!--The back to home navigation icon here-->
<a href="index.html" class="icon fa-arrow-circle-left" ></a>
</div>
<div class="row">
<p class="col-md-12 header">Service Request Form</p>
<form class="col-md-12 form" id="contactForm" name = myForm ><!--The form should be at the center with a purple background taking the remaining part of the screen-->
<div class="input_container">
<span class="input_icon fa-user-o"></span>
<input type="text" id = "name" name="name" placeholder="Your Name" required>
</div>
<div class="input_container">
<span class="input_icon fa-bell-o"></span>
<input type="text" id = "event_type" name="event_type" placeholder="Event Type e.g. Wedding, Conference etc" required>
</div>
<div class="input_container">
<span class="input_icon fa-map-marker"></span>
<input type="text" id = "event_location" name="event_location" placeholder="Event Location" required>
</div>
<div class="input_container">
<span class="input_icon fa-calendar"></span>
<input type="date" id = "event_date" name="event_date" placeholder="Event Date (dd/mm/yyyy)" required>
</div>
<div class="input_container">
<span class="input_icon fa-phone"></span>
<input type="number" maxlength= "11" id = "phone" name="phone" placeholder="Phone Number" required >
</div>
<div class="input_container">
<span class="input_icon fa-envelope-o"></span>
<input type="text" id = "email" name="email" placeholder="Email Address" required>
</div>
<div class="checkbox">
<p>Required Service(s):</p>
<input type="checkbox" class="messageCheckbox" name="mailId[]" value="Outdoor Catering">Outdoor Catering<br>
<input type="checkbox" class="messageCheckbox" name="mailId[]" value="Indoor Catering">Indoor Catering<br>
<input type="checkbox" class="messageCheckbox" name="mailId[]" value="Event Management & planning">Event Management & Planning<br>
<input type="checkbox" class="messageCheckbox" name="mailId[]" value="Event Ushering">Event Ushering<br>
</div>
<div class="button"><button type="submit">submit</button></div>
</form>
</div>
</section>
<footer class="row footer">
<div class="col-md-12">
<p>developed with <b class="love fa-heart"></b> by DSC FUTA</p>
</div>
</footer>
<script src="https://www.gstatic.com/firebasejs/5.6.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.6.0/firebase-firestore.js"></script>
<script src="form.js"></script>
</body>
</html>