-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.php
75 lines (75 loc) · 2.34 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
<?php include 'header.php'; ?>
<div class="container-fluid">
<div class="row">
<div class="container konten-wrapper">
<div class="panel panel-default">
<div class="panel-body main">
<div class="col-md-8">
<div class="post-detail">
<div class="row post-title">
<div class="col-sm-12">
<h2>KONTAK KAMI</h2>
</div>
</div>
<div class="row post-content">
<div class="col-sm-12">
<table border="0" width="100%">
<tr>
<th>Telp</th>
<td>:</td>
<td>(0265) 345-394</td>
</tr>
<tr>
<th>No. Handphone</th>
<td>:</td>
<td>087999880999</td>
</tr>
<tr>
<th>E-mail</th>
<td>:</td>
<td>[email protected]</td>
</tr>
<tr>
<th>Alamat Redaksi</th>
<td>:</td>
<td>Jl. Komarasari II no. 28 Kel. Empangsari, Kec. Tawang Kota Tasikmalaya 46113</td>
</tr>
</table>
</div>
<div class="clear"></div>
<div class="col-sm-8 col-sm-offset-2">
<form method="POST" id="formPesan">
<div class="form-group">
<label>Nama Lengkap</label>
<input type="text" class="form-control" name="nama_lengkap" placeholder="Nama Anda..." id="nama">
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control" name="email" placeholder="Email Anda..." id="email">
</div>
<div class="form-group">
<label>Subjek</label>
<input type="text" class="form-control" name="subjek" placeholder="Membahas tentang..." id="subjek">
</div>
<div class="form-group">
<label>Pesan</label>
<textarea name="pesan" class="form-control" rows="8" id="pesan"></textarea>
</div>
<div class="form-group">
<button class="btn btn-default" id="btn-kirim" type="button" onclick="kirimPesan()">
<i class="glyphicon glyphicon-send"></i> KIRIM
</button>
</div>
</form>
<div id="hasil"></div>
</div>
</div>
</div>
</div>
<?php include 'sidebar.php'; ?>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer.php';