-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
99 lines (63 loc) · 2.94 KB
/
contact.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
<!DOCTYPE html>
<html class="no-js">
<head>
<title>Contact | Charity / Non-profit responsive Bootstrap HTML5 template</title>
<?php require_once("includes/head.php"); ?>
</head>
<body>
<?php require_once("includes/header.php"); ?>
<div class="page-heading text-center">
<div class="container zoomIn animated">
<h1 class="page-title">CONTACT US <span class="title-under"></span></h1>
<p class="page-description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit Necessitatibus.
</p>
</div>
</div>
<div class="main-container fadeIn animated">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-12 col-form">
<h2 class="title-style-2">CONTACT FORM <span class="title-under"></span></h2>
<form action="mail.php" method="post" id="ajax-contact"class="contact-form ajax-form">
<div class="row">
<div class="form-group col-md-6">
<input type="text" name="name" id="contact-name" class="form-control" placeholder="Name*" required>
</div>
<div class="form-group col-md-6">
<input type="email" name="email" id="contact-email" class="form-control" placeholder="E-mail*" required>
</div>
</div>
<div class="form-group">
<textarea name="message" rows="5" id="contact-message" class="form-control" placeholder="Message*" required></textarea>
<div id="form-messages"></div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary pull-right">Send message</button>
</div>
<div class="clearfix"></div>
</form>
</div>
<div class="col-md-4 col-md-offset-1 col-contact">
<h2 class="title-style-2"> SADAKA CONTACTS <span class="title-under"></span></h2>
<p>
<b>Sadaka</b> ipsum dolor sit amet, consectetur adipiscing elit. Ut at eros rutrum turpis viverra elementum semper quis ex. Donec lorem nulla .
</p>
<div class="contact-items">
<ul class="list-unstyled contact-items-list">
<li class="contact-item"> <span class="contact-icon"> <i class="fa fa-map-marker"></i></span> 135 Hay el nahda, Rabat, Morocco</li>
<li class="contact-item"> <span class="contact-icon"> <i class="fa fa-phone"></i></span> 00 210 25 55 55 11</li>
<li class="contact-item"> <span class="contact-icon"> <i class="fa fa-envelope"></i></span> contact@sadaka.org</li>
</ul>
</div>
</div>
</div> <!-- /.row -->
</div>
</div>
<div id="contact-map" class="contact-map">
</div>
<?php require_once("includes/footer.php"); ?>
<!-- Google map -->
<script src="http://maps.google.com/maps/api/js?sensor=false&libraries=places" type="text/javascript"></script>
</body>
</html>