-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoting_profil.php
111 lines (107 loc) · 3.27 KB
/
voting_profil.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
<?php include 'header.php';
// cek apakah sudah verivikasi?
// jika sudah verivikasi
if(isset($_SESSION['pemilih_status'])){
?>
<div class="content">
<div class="panel panel-flat panel-voting">
<div class="panel-heading">
<center>
<h1>
PROFIL ANDA
</h1>
</center>
</div>
<div class="panel-body">
<br>
<?php
$idp = $_SESSION['pemilih_id'];
$data_pemilih = mysqli_query($config,"select * from pemilih where pemilih_id='$idp'");
$dp = mysqli_fetch_assoc($data_pemilih);
?>
<div class="row">
<div class="col-md-3">
<img style="width: 270px;height: 270px"src="images/pemilih/<?php echo $dp['pemilih_foto']; ?>" class="img-thumbnail">
</div>
<div class="col-md-4">
<table class="table table-bordered table-striped">
<tr>
<th width="40%">Nomor KK</th>
<td><?php echo $dp['pemilih_kk']; ?></td>
</tr>
<tr>
<th width="40%">NIK</th>
<td><?php echo $dp['pemilih_nik']; ?></td>
</tr>
<tr>
<th width="40%">Nama Lengkap</th>
<td><?php echo $dp['pemilih_nama']; ?></td>
</tr>
<tr>
<th width="40%">Tempat Lahir</th>
<td><?php echo $dp['pemilih_tempat_lahir']; ?></td>
</tr>
<tr>
<th width="40%">Tanggal Lahir</th>
<td><?php echo date('d F Y',strtotime($dp['pemilih_tgl_lahir'])); ?></td>
</tr>
<tr>
<th width="20%">Umur</th>
<td><?php echo date('Y') - date('Y',strtotime($dp['pemilih_tgl_lahir'])); ?> Tahun</td>
</tr>
</table>
</div>
<div class="col-md-5">
<table class="table table-bordered table-striped">
<tr>
<th width="30%">Jenis Kelamin</th>
<td><?php echo $dp['pemilih_jk']; ?></td>
</tr>
<tr>
<th>Alamat</th>
<td>
<?php echo $dp['pemilih_alamat']; ?>
</td>
</tr>
<tr>
<th width="40%">Agama</th>
<td>
<?php echo $dp['pemilih_agama'];?>
</td>
</tr>
<tr>
<th width="40%">Status Kawin</th>
<td>
<?php echo $dp['pemilih_status_kawin'];?>
</td>
</tr>
<tr>
<th width="40%">Pekerjaan</th>
<td>
<?php echo $dp['pemilih_pekerjaan'];?>
</td>
</tr>
<tr>
<th width="40%">Kategori Pemilih</th>
<td>
<?php echo $dp['pemilih_kategori'];?>
</td>
</tr>
</table>
</div>
</div>
<br/>
<br/>
<center>
<a href="voting_pilih.php" class="btn btn-primary btn-danger">LANJUT VOTING</a>
</center>
</div>
</div>
</div>
<?php
}else{
// jika belum verifikasi
echo "<div class='alert alert-danger text-center'>Nampaknya anda belum melakukan verifikasi, silahkan verifikasi terlebih dulu di <a href='voting.php'>sini</a></div>";
}
?>
<?php include 'footer.php'; ?>