-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact-us.php
72 lines (70 loc) · 3.02 KB
/
contact-us.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
<?php
session_start();
include('includes/header.php') ?>
<link href="css/contact-us.css" rel="stylesheet">
<?php
if (isset($_SESSION['access_token']))
{
include('includes/navbar.php');
}
else
{
//load not loggedin navbar
include('includes/not_login_navbar.php');
}?>
<main>
<div class="container-fluid">
<div class="row">
<div class="col-md-12 col-sm-12">
<!-- SECTION TITLE -->
<div class="wow fadeInUp section-title" data-wow-delay="0.2s">
<h2>Get in touch</h2>
<p>Anything you need, just Ask!</p>
</div>
</div>
<div class="col-md-7 col-sm-8">
<div class="wow fadeInUp" data-wow-delay="0.4s">
<form id="contact-form" action="./mail/compose?via=support" method="POST">
<div class="col-md-6 col-sm-6">
<input type="email" class="form-control" name="email" placeholder="Email*" required="">
</div><br />
<div class="col-md-12 col-sm-12">
<textarea class="form-control" rows="5" name="message" placeholder="Message*" required=""></textarea><br />
</div>
<div class="col-md-12 col-sm-12">
<?php
if(isset($_GET['err']))
{
echo'<div class="alert alert-danger text-center">
<i class="fa fa-bell" aria-hidden="true"></i>
<p> '.urldecode($_GET["err"]).' </p>
</div>';
}
?>
</div>
<div class="col-md-offset-8 col-md-4 col-sm-offset-6 col-sm-6">
<button id="submit" type="submit" class="form-control btn btn-danger" name="submit">Send Message</button> <br />
</div>
</form>
</div>
</div>
<div class="col-md-5 col-sm-8">
<!-- CONTACT INFO -->
<div class="wow fadeInUp contact-info" data-wow-delay="0.4s">
<div class="section-title">
<h2>Contact Info</h2>
<p>If any file that you want isn't present on the website, just mention it to us, we'll try to upload it ASAP! <br /> We would love to hear from you. Give us a call or send us an email and we will get back to you as soon as possible!</p>
</div>
<p><i class="fa fa-map-marker"></i> University of Engineering & Management, <br> Rajarhat <br> Kolkata, West Bengal</p>
<p><i class="fa fa-comment"></i> <a href="mailto:[email protected]">[email protected]</a></p>
<p><i class="fa fa-phone"></i> +91-7890998781</p>
</div>
</div>
</div>
</div>
</main>
<?php include('includes/footer.php') ?>
<!--/.Footer-->
<?php include('includes/scripts.php') ?>
</body>
</html>