-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontactus.php
73 lines (67 loc) · 3.57 KB
/
contactus.php
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
<?php
include_once 'userSession.php';
include_once './Development/commonfiles/header.php';
?>
<title>Contact Us</title>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="well well-sm">
<form id="defaultForm" class="form-horizontal fv-form fv-form-bootstrap" novalidate="novalidate" method="post" action="contactusVerify.php">
<fieldset>
<legend class="text-center header">Contact us</legend>
<div class="form-group">
<label class="col-md-3 control-label" for="textinput">First Name:</label>
<div class="col-md-8">
<input data-fv-notempty-message="The first name is required and cannot be empty" name="contactFirstName" required="" id="fname" name="name" type="text" placeholder="First Name" class="form-control">
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" for="textinput">Last Name:</label>
<div class="col-md-8">
<input required data-fv-notempty-message="The Last name is required and cannot be empty" name="contactLastName" id="lname" name="name" type="text" placeholder="Last Name" class="form-control">
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" for="textinput">Email Address:</label>
<div class="col-md-8">
<input name="contactEmailAddress" required="" data-fv-field="email" id="email" name="email" type="email" placeholder="Email Address" class="form-control">
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" for="textinput">Mobile Number:</label>
<div class="col-md-8">
<input name="contactMobileNumber" pattern="[0-9]{8}" required="" id="phone" name="phone" type="text" placeholder="Phone" class="form-control">
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" for="textinput">Your Message:</label>
<div class="col-md-8">
<textarea data-fv-notempty-message="The Your message is required and cannot be empty" name="contactMessage" required="" class="form-control" id="message" name="message" placeholder="Enter your massage for us here. We will get back to you within 2 business days." rows="7"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-12 text-center">
<button name="contactSubmit" type="submit" class="btn btn-primary btn-lg">Submit</button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</div>
<style>
.header {
color: #36A0FF;
font-size: 27px;
padding: 10px;
}
.bigicon {
font-size: 35px;
color: #36A0FF;
}
</style>
<?php
include_once './Development/commonfiles/footer.php';
?>