Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if (!session_start()){
- session_start();
- }
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <?php
- $adminlogin =$_SESSION['valid_username'];
- if ($adminlogin !=""){
- ?>
- <title>E-Voting System</title>
- <link rel="stylesheet" href="../css/screen.css" type="text/css" media="screen" title="default" />
- <!--[if IE]>
- <link rel="stylesheet" media="all" type="text/css" href="../css/pro_dropline_ie.css" />
- <![endif]-->
- <!-- jquery core -->
- <script src="../js/jquery/jquery-1.4.1.min.js" type="text/javascript"></script>
- <!-- checkbox styling script -->
- <script src="../js/jquery/ui.core.js" type="text/javascript"></script>
- <script src="../js/jquery/ui.checkbox.js" type="text/javascript"></script>
- <script src="../js/jquery/jquery.bind.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(function(){
- $('input').checkBox();
- $('#toggle-all').click(function(){
- $('#toggle-all').toggleClass('toggle-checked');
- $('#mainform input[type=checkbox]').checkBox('toggle');
- return false;
- });
- });
- </script>
- <![if !IE 7]>
- <!-- styled select box script version 1 -->
- <script src="../js/jquery/jquery.selectbox-0.5.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('.styledselect').selectbox({ inputClass: "selectbox_styled" });
- });
- </script>
- <![endif]>
- <!-- styled select box script version 2 -->
- <script src="../js/jquery/jquery.selectbox-0.5_style_2.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('.styledselect_form_1').selectbox({ inputClass: "styledselect_form_1" });
- $('.styledselect_form_2').selectbox({ inputClass: "styledselect_form_2" });
- });
- </script>
- <!-- styled select box script version 3 -->
- <script src="../js/jquery/jquery.selectbox-0.5_style_2.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('.styledselect_pages').selectbox({ inputClass: "styledselect_pages" });
- });
- </script>
- <!-- styled file upload script -->
- <script src="../js/jquery/jquery.filestyle.js" type="text/javascript"></script>
- <script type="text/javascript" charset="utf-8">
- $(function() {
- $("input.file_1").filestyle({
- image: "../images/forms/choose-file.gif",
- imageheight : 21,
- imagewidth : 78,
- width : 310
- });
- });
- </script>
- <!-- Custom jquery scripts -->
- <script src="../js/jquery/custom_jquery.js" type="text/javascript"></script>
- <!-- Tooltips -->
- <script src="../js/jquery/jquery.tooltip.js" type="text/javascript"></script>
- <script src="../js/jquery/jquery.dimensions.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(function() {
- $('a.info-tooltip ').tooltip({
- track: true,
- delay: 0,
- fixPNG: true,
- showURL: false,
- showBody: " - ",
- top: -35,
- left: 5
- });
- });
- </script>
- <!-- date picker script -->
- <link rel="stylesheet" href="../css/datePicker.css" type="text/css" />
- <script src="../js/jquery/date.js" type="text/javascript"></script>
- <script src="../js/jquery/jquery.datePicker.js" type="text/javascript"></script>
- <script type="text/javascript" charset="utf-8">
- $(function()
- {
- // initialise the "Select date" link
- $('#date-pick')
- .datePicker(
- // associate the link with a date picker
- {
- createButton:false,
- startDate:'01/01/2005',
- endDate:'31/12/2020'
- }
- ).bind(
- // when the link is clicked display the date picker
- 'click',
- function()
- {
- updateSelects($(this).dpGetSelected()[0]);
- $(this).dpDisplay();
- return false;
- }
- ).bind(
- // when a date is selected update the SELECTs
- 'dateSelected',
- function(e, selectedDate, $td, state)
- {
- updateSelects(selectedDate);
- }
- ).bind(
- 'dpClosed',
- function(e, selected)
- {
- updateSelects(selected[0]);
- }
- );
- var updateSelects = function (selectedDate)
- {
- var selectedDate = new Date(selectedDate);
- $('#d option[value=' + selectedDate.getDate() + ']').attr('selected', 'selected');
- $('#m option[value=' + (selectedDate.getMonth()+1) + ']').attr('selected', 'selected');
- $('#y option[value=' + (selectedDate.getFullYear()) + ']').attr('selected', 'selected');
- }
- // listen for when the selects are changed and update the picker
- $('#d, #m, #y')
- .bind(
- 'change',
- function()
- {
- var d = new Date(
- $('#y').val(),
- $('#m').val()-1,
- $('#d').val()
- );
- $('#date-pick').dpSetSelected(d.asString());
- }
- );
- // default the position of the selects to today
- var today = new Date();
- updateSelects(today.getTime());
- // and update the datePicker to reflect it...
- $('#d').trigger('change');
- });
- </script>
- <!-- MUST BE THE LAST SCRIPT IN <HEAD></HEAD></HEAD> png fix -->
- <script src="../js/jquery/jquery.pngFix.pack.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(document).ready(function(){
- $(document).pngFix( );
- });
- </script>
- </head>
- <body>
- <!-- Start: page-top-outer -->
- <div id="page-top-outer">
- <!-- Start: page-top -->
- <div id="page-top">
- <!-- start logo -->
- <div id="logo">
- <a href=""><img src="../images/shared/logo.png" width="156" height="40" alt="" /></a>
- </div>
- <!-- end logo -->
- <div class="clear"></div>
- </div>
- <!-- End: page-top -->
- </div>
- <!-- End: page-top-outer -->
- <div class="clear"> </div>
- <!-- start nav-outer-repeat................................................................................................. START -->
- <div class="nav-outer-repeat">
- <!-- start nav-outer -->
- <div class="nav-outer">
- <!-- start nav-right -->
- <div id="nav-right">
- <div class="nav-divider"> </div>
- <a href="../logout.php" id="logout"><img src="../images/shared/nav/nav_logout.gif" width="64" height="14" alt="" /></a>
- <div class="clear"> </div>
- </div>
- <!-- end nav-right -->
- <!-- start nav -->
- <div class="nav">
- <div class="table">
- <ul class="select"><li><a href="../index.php"><b>Beranda</b><!--[if IE 7]><!--></a><!--<![endif]-->
- </li>
- </ul>
- <div class="nav-divider"> </div>
- <ul class="select"><li><a href=""><b>Himpunan Mahasiswa</b><!--[if IE 7]><!--></a><!--<![endif]-->
- <!--[if lte IE 6]><table><tr><td><![endif]-->
- <div class="select_sub">
- <ul class="sub">
- <li><a href="../kk/kk.php">Kesejahteraan Keluarga</a></li>
- <li><a href="../elektro/elektro.php">T. Elektro</a></li>
- <li><a href="../elektronika/elektronika.php">T.Elektronika</a></li>
- <li><a href="../mesin/mesin.php">T.Mesin</a></li>
- <li><a href="../otomotif/otomotif.php">T.Otomotif</a></li>
- <li><a href="../tambang/tambang.php">T.Pertambangan</a></li>
- <li><a href="../sipil/sipil.php">T.Sipil</a></li>
- </ul>
- </div>
- <!--[if lte IE 6]></td></tr></table></a><![endif]-->
- </li>
- </ul>
- <div class="nav-divider"> </div>
- <ul class="select"><li><a href="bem.php"><b>Badan Eksekutif Mahasiswa</b><!--[if IE 7]><!--></a></li></ul>
- <div class="nav-divider"> </div>
- <ul class="select"><li><a href=""><b>Setting</b><!--[if IE 7]><!--></a><!--<![endif]-->
- <!--[if lte IE 6]><table><tr><td><![endif]-->
- <div class="select_sub">
- <ul class="sub">
- <li><a href="../setting/form_waktu.php">Waktu Pemilihan</a></li>
- <li><a href="../setting/laporan.php">Laporan Hasil Pemilihan</a></li>
- <li><a href="../setting/clearing.php">Pembersihan Data</a></li>
- </ul>
- </div>
- <!--[if lte IE 6]></td></tr></table></a><![endif]-->
- </li>
- </ul>
- <div class="nav-divider"> </div>
- <div class="clear"></div>
- </div>
- <div class="clear"></div>
- </div>
- <!-- start nav -->
- </div>
- <div class="clear"></div>
- <!-- start nav-outer -->
- </div>
- <!-- start nav-outer-repeat................................................... END -->
- <div class="clear"></div>
- <!-- start content-outer ........................................................................................................................START -->
- <div id="content-outer">
- <!-- start content -->
- <div id="content">
- <table border="0" width="100%" cellpadding="0" cellspacing="0" id="content-table">
- <tr>
- <th rowspan="3" class="sized"><img src="../images/shared/side_shadowleft.jpg" width="20" height="300" alt="" /></th>
- <th class="topleft"></th>
- <td id="tbl-border-top"> </td>
- <th class="topright"></th>
- <th rowspan="3" class="sized"><img src="../images/shared/side_shadowright.jpg" width="20" height="300" alt="" /></th>
- </tr>
- <tr>
- <td id="tbl-border-left"></td>
- <td>
- <!-- start content-table-inner ...................................................................... START -->
- <div id="content-table-inner">
- <!-- start table-content -->
- <div id="table-content">
- <center><h1>Profil Kandidat</h1><center><br /><br />
- <center><a href="tambahkanprofil.php"><input type="submit" style="padding:6px;background:orange" value="Tambah Profil Kandidat" /></a><center><br><Br>
- <!-- start product-table ..................................................................................... -->
- <form id="mainform" action="">
- <table border="0" width="100%" cellpadding="0" cellspacing="0" id="product-table">
- <tr>
- <th class="table-header-repeat line-left"><a>Nomor Urut</th>
- <th class="table-header-repeat line-left"><a>Periode</th>
- <th class="table-header-repeat line-left"><a>Motto</a></th>
- <th class="table-header-repeat line-left"><a>Visi</a></th>
- <th class="table-header-repeat line-left"><a>Misi</a></th>
- <th class="table-header-repeat line-left"><a>Foto Ketua</a></th>
- <th class="table-header-repeat line-left"><a>Foto Wakil</a></th>
- <th class="table-header-options line-left"><a>Options</a></th>
- </tr>
- <?php
- require('../qs_connection.php');
- $tahun = Date("Y");
- $query = "select * from tb_profil_bem ORDER BY 'tb_profil_bem', 'no_urut' ASC";
- $result = mysql_query($query, $link);
- //$no = 0;
- while ($buff = mysql_fetch_array($result)){
- //$no++;
- ?>
- <tr class="alternate-row">
- <td><?php echo $buff['no_urut']; ?></td>
- <td><?php echo $buff['periode']; ?></td>
- <td><?php echo $buff['moto']; ?></td>
- <td><?php echo $buff['visi']; ?></td>
- <td><?php echo $buff['misi']; ?></td>
- <td><img src="../../gambar/<?php echo $buff['foto_cln_kt'];?>" width="100" /></td>
- <td><img src="../../gambar/<?php echo $buff['foto_cln_wk'];?>" width="100" /></td>
- <td class="options-width">
- <a href="kandidat_edit_profil.php?id_profil=<?php echo $buff['id_profil']; ?>" title="Edit" class="icon-1 info-tooltip"></a>
- <a href="kandidat_hapus_profil.php?id_profil=<?php echo $buff['id_profil']; ?>" title="Delete" onClick="return confirm('Anda yakin?');" class="icon-2 info-tooltip"></a>
- </td>
- </tr>
- <?php
- };
- mysql_close($link);
- ?>
- </table>
- <!-- end product-table................................... -->
- </form>
- </div>
- <!-- end content-table -->
- <div class="clear"></div>
- </div>
- <!-- end content-table-inner ............................................END -->
- </td>
- <td id="tbl-border-right"></td>
- </tr>
- <tr>
- <th class="sized bottomleft"></th>
- <td id="tbl-border-bottom"> </td>
- <th class="sized bottomright"></th>
- </tr>
- </table>
- <div class="clear"> </div>
- </div>
- <!-- end content -->
- <div class="clear"> </div>
- </div>
- <!-- end content-outer........................................................END -->
- <div class="clear"> </div>
- <!-- start footer -->
- <div id="footer">
- <!-- start footer-left -->
- <div id="footer-left">
- Copyright : Fakultas Teknik by RPL. All rights reserved.</div>
- <!-- end footer-left -->
- <div class="clear"> </div>
- </div>
- <!-- end footer -->
- </body>
- </html>
- <?php
- }else{
- ?><script language="javascript">;
- alert("Maaf, Anda tidak berhak mengakses halaman ini!!");
- document.location="../login.php";
- </script>
- <?php
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment