-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiletisim.php
132 lines (94 loc) · 4.2 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
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
<?php require_once 'header.php'; ?>
<div class="site-blocks-cover inner-page-cover overlay" style="background-image: url(images/hero_bg_2.jpg);" data-aos="fade" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row align-items-center justify-content-center text-center">
<div class="col-md-10">
<h1 class="mb-2">İLETİŞİM</h1>
</div>
</div>
</div>
</div>
<div class="site-section">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-8 mb-5">
<form action="#" class="p-5 bg-white border">
<div class="row form-group">
<div class="col-md-12 mb-3 mb-md-0">
<label class="font-weight-bold" for="fullname">Ad soyad</label>
<input type="text" id="fullname" class="form-control" placeholder="Ad soyad">
</div>
</div>
<div class="row form-group">
<div class="col-md-12">
<label class="font-weight-bold" for="email">Email</label>
<input type="email" id="email" class="form-control" placeholder="Email ">
</div>
</div>
<div class="row form-group">
<div class="col-md-12">
<label class="font-weight-bold" for="email">Konu</label>
<input type="text" id="subject" class="form-control" placeholder="Konu giriniz">
</div>
</div>
<div class="row form-group">
<div class="col-md-12">
<label class="font-weight-bold" for="message">Mesaj</label>
<textarea name="message" id="message" cols="30" rows="5" class="form-control" placeholder="Mesaj giriniz"></textarea>
</div>
</div>
<div class="row form-group">
<div class="col-md-12">
<input type="submit" value="Gönder" class="btn btn-primary py-2 px-4 rounded-0">
</div>
</div>
</form>
</div>
<div class="col-lg-4">
<div class="p-4 mb-3 bg-white">
<h3 class="h6 text-black mb-3 text-uppercase">İletişim Bilgileri</h3>
<p class="mb-0 font-weight-bold">Adres</p>
<p class="mb-4"><?php echo $ayarcek['adres'] ?></p>
<p class="mb-0 font-weight-bold">Telefon</p>
<p class="mb-4"><a href="#"><?php echo $ayarcek['telefon'] ?></a></p>
<p class="mb-0 font-weight-bold">Email </p>
<p class="mb-0"><a href="#"><?php echo $ayarcek['email'] ?></a></p>
</div>
</div>
</div>
</div>
</div>
<div class="site-section bg-light">
<div class="container">
<div class="row mb-5 justify-content-center">
<div class="col-md-7">
<div class="site-section-title text-center">
<h2>EKİBİMİZ</h2>
</div>
</div>
</div>
<div class="row">
<?php
$ekip=$baglanti->prepare("SELECT * from ekip ");
$ekip->execute();
while ($ekipcek=$ekip->fetch(PDO::FETCH_ASSOC)) {
?>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-5">
<div class="team-member">
<img src="resimler/<?php echo $ekipcek['resim'] ?>" alt="Image" class="img-fluid rounded mb-4">
<div class="text">
<h2 class="mb-2 font-weight-light text-black h4"><?php echo $ekipcek['adsoyad'] ?></h2>
<span class="d-block mb-3 text-white-opacity-05"><?php echo $ekipcek['gorev'] ?></span>
<p>
<a href="#" class="text-black p-2"><span class="icon-facebook"></span></a>
<a href="#" class="text-black p-2"><span class="icon-twitter"></span></a>
<a href="#" class="text-black p-2"><span class="icon-linkedin"></span></a>
</p>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<?php require_once 'footer.php';