-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiletisim.php
86 lines (75 loc) · 3.63 KB
/
iletisim.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
<?php include"header.php"; ?>
<div role="main" class="main">
<div class="container">
<div class="row pt-xl">
<div class="col-md-7">
<h1 class="mt-xl mb-none">Bize Ulaşın</h1>
<div class="divider divider-primary divider-small mb-xl">
<hr>
</div>
<p class="lead mb-xl mt-lg">Bize Ulaşmak için Aşagıdaki Formu eksiksizce doldurup gönderebilirsiniz.</p>
<div class="alert alert-success hidden mt-lg" id="contactSuccess">
<strong>Success!</strong> Your message has been sent to us.
</div>
<div class="alert alert-danger hidden mt-lg" id="contactError">
<strong>Error!</strong> There was an error sending your message.
<span class="font-size-xs mt-sm display-block" id="mailErrorMessage"></span>
</div>
<form id="contactForm" action="php/contact-form.php" method="POST">
<div class="row">
<div class="form-group">
<div class="col-md-12">
<input type="text" placeholder="Your Name" value="" data-msg-required="Please enter your name." maxlength="100" class="form-control input-lg" name="name" id="name" required>
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-12">
<input type="email" placeholder="Your E-mail" value="" data-msg-required="Please enter your email address." data-msg-email="Please enter a valid email address." maxlength="100" class="form-control input-lg" name="email" id="email" required>
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-12">
<input type="text" placeholder="Subject" value="" data-msg-required="Please enter the subject." maxlength="100" class="form-control input-lg" name="subject" id="subject" required>
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-12">
<textarea maxlength="5000" placeholder="Message" data-msg-required="Please enter your message." rows="5" class="form-control input-lg" name="message" id="message" required></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<input type="submit" value="Send Message" class="btn btn-primary btn-lg mb-xlg" data-loading-text="Loading...">
</div>
</div>
</form>
</div>
<div class="col-md-4 col-md-offset-1">
<h4 class="mt-xl mb-none">Adres İletişim</h4>
<div class="divider divider-primary divider-small mb-xl">
<hr>
</div>
<ul class="list list-icons list-icons-style-3 mt-xlg mb-xlg">
<li><i class="fa fa-map-marker"></i> <strong>Addres:</strong><?php echo $ayarcek['ayar_adres']; ?></li>
<li><i class="fa fa-phone"></i> <strong>Telefon:</strong><?php echo $ayarcek['ayar_tel']; ?></li>
<li><i class="fa fa-envelope"></i> <strong>Email:</strong> <a href="mailto:[email protected]"><?php echo $ayarcek['ayar_mail']; ?></a></li>
</ul>
<h4 class="pt-xl mb-none">Çalışma Saatleri</h4>
<div class="divider divider-primary divider-small mb-xl">
<hr>
</div>
<p><?php echo $ayarcek['ayar_mesai']; ?></p>
</div>
</div>
</div>
<!-- Google Maps - Go to the bottom of the page to change settings and map location. -->
<div id="googlemaps" class="google-map google-map-footer"></div>
</div>
<?php include"footer.php"; ?>