-
Notifications
You must be signed in to change notification settings - Fork 4
/
contactus.php
138 lines (107 loc) · 4.98 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
session_start();
?>
<html>
<head>
<title> Contact | Slot Booking Project </title>
</head>
<!-- ADDED STYLES -->
<link rel="stylesheet" type = "text/css" href ="css/contactus.css">
<link rel="stylesheet" type = "text/css" href ="css/bootstrap.min.css">
<body>
<!--Back to top button..................................................................................-->
<button onclick="topFunction()" id="myBtn" title="Go to top">
<span class="glyphicon glyphicon-chevron-up"></span>
</button>
<!--Javacript for back to top button....................................................................-->
<script type="text/javascript">
window.onscroll = function()
{
scrollFunction()
};
function scrollFunction(){
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<nav class="navbar navbar-inverse navbar-fixed-top navigation-clean-search" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#myNavbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse " id="myNavbar">
<ul class="nav navbar-nav">
<!-- added home and about -->
<li class="active" ><a href="index.php">Home</a></li>
<li><a href="aboutus.php">About</a></li>
</ul>
</div>
</nav>
<br>
<div class="heading">
<strong>Want to contact <span class="edit"> Us </span>?</strong>
<br>
Here are a few ways to get in touch with us.
</div>
<div class="col-xs-12 line"><hr></div>
<div class="container" >
<div class="col-md-5" style="float: none; margin: 0 auto;">
<div class="form-area" ">
<form role="form">
<br style="clear: both">
<h3 style="margin-bottom: 25px; text-align: center; font-size: 30px;"> Contact Form</h3>
<div class="form-group">
<input type="text" class="form-control" id="name" name="name" placeholder="Name" required autofocus="">
</div>
<div class="form-group">
<input type="text" class="form-control" id="email" name="email" placeholder="Email" required>
</div>
<div class="form-group">
<input type="text" class="form-control" id="mobile" name="mobile" placeholder="Mobile Number" required>
</div>
<div class="form-group">
<input type="text" class="form-control" id="subject" name="subject" placeholder="Subject" required>
</div>
<div class="form-group">
<textarea class="form-control" type="textarea" id="message" placeholder="Message" maxlength="140" rows="7"></textarea>
<span class="help-block"><p id="characterLeft" class="help-block">Max Character length : 140 </p></span>
</div>
<button type="button" id="submit" name="submit" class="btn btn-primary pull-right"> Submit Form</button>
</form>
</div>
</div>
</div>
<div class="paragraph1">
<p><h3>We are here to answer any queries you may have about our <font color="green"><strong>Slot Booking Tool</strong></font>. Reach out to us and we will respond as soon as we can.</h3></p>
<p><h3>Even if there is something you always wanted to use and couldn't find it here <font color="green"><strong></strong></font>in the list, please do let us know and we here at <font color="green"><strong>Management Team promise to do our best to give you best service.</strong></font> </h3></p>
<p><b><h3>Contact Details of Team Equipment Project are given below.</h3></b></p>
<p class="edit2">
<strong>Postal Address :</strong><br>
Co-ordinator,<br>
Centre for Design and Fabrication of Electronic Devices (C4DFED)<br>
Room No. 102, A4-Building, Indian Institute of Technology (IIT), Mandi<br>
Kamand Campus (South), IIT Mandi – 175 005 (Himachal Pradesh), India<br>
<strong>Email :</strong> <a href="[email protected]">[email protected]</a><br>
<strong>Telephone :</strong> 01905 267841
</p>
<!-- <p class="edit2"><strong>Get in touch with us on Social Media.</strong></p> -->
</div>
</body>
<footer class="container-fluid bg-4 text-center">
<br>
<p> Slot Booking Project 2020 | © All Rights Reserved </p>
<br>
</footer>
</html>