Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (79)
Showing
with 8753 additions and 0 deletions
LGM/Buku_Nikah/Pictures-1463452827/2.png

51.6 KiB

LGM/Buku_Nikah/Pictures-1463452827/3.png

58.5 KiB

<?php
include('../models/perkawinan.php');
include('../models/pesan.php');
include('../models/penduduk.php');
$conn = connect_lgm();
$perkawinan = new Perkawinan;
$pesan = new Pesan;
$penduduk = new Penduduk;
$id = $_GET["id"];
$psn = $_GET["pesan"];
$status = "";
if (isset($_GET['setuju'])){
$status = "Approved";
}
else if (isset($_GET['tolak'])){
$status = "Declined";
}
if (($status == "Declined" && $psn != "") || ($status == "Approved")) {
/* Menentukan ke mana pesan di kirim */
$nik_suami = $perkawinan->get_nik_suami_by_id($id);
$nik_istri = $perkawinan->get_nik_istri_by_id($id);
/* Mengubah status pendaftaran */
$perkawinan->update_status($id, $status);
/* Mengubah status perkawinan */
if ($status == "Approved") {
$penduduk->ubahStatusKeKawin($nik_suami);
$penduduk->ubahStatusKeKawin($nik_istri);
/* Menambah Pesan ke Basis Data */
$pesan->send_pesan($nik_suami, $psn);
$pesan->send_pesan($nik_istri, $psn);
}
header("Location: dashboard.php");
close_lgm();
die();
} else {
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Masukkan pesan berupa alasan penolakan pendaftaran perkawinan');
window.location.href='dashboard.php';
</SCRIPT>");
}
?>
\ No newline at end of file
<!DOCTYPE html>
<?php
if (isset($_COOKIE["id_admin"])) {
?>
<html lang="en" class="">
<head>
<meta charset="utf-8" />
<title>Admin | LGM</title>
<meta name="description" content="Bandung Web Kit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="../../libs/assets/animate.css/animate.css" type="text/css" />
<link rel="stylesheet" href="../../libs/assets/font-awesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="../../libs/jquery/bootstrap/dist/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="../../libs/jquery/jquery-ui-1.11.4.custom/jquery-ui.css" type="text/css" />
<link rel="stylesheet" href="../css/font.css" type="text/css" />
<link rel="stylesheet" href="../css/style.css" type="text/css" />
</head>
<?php
require_once('../models/perkawinan.php');
require_once('../models/penduduk.php');
$penduduk = new Penduduk;
$perkawinan = new Perkawinan;
?>
<script src="../../libs/jquery/jquery-ui-1.11.4.custom/external/jquery/jquery.js"></script>
<script src="../../libs/jquery/jquery-ui-1.11.4.custom/jquery-ui.js"></script>
<script src="../../libs/jquery/bootstrap/dist/js/bootstrap.js"></script>
<style>
.black_overlay{
display: none;
position: fixed;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: black;
z-index:1001;
-moz-opacity: 0.8;
opacity:.80;
filter: alpha(opacity=80);
}
.white_content {
text-align: left;
display: none;
position: fixed;
top: 25%;
left: 25%;
width: 50%;
height: 50%;
padding: 16px;
border: 16px solid orange;
background-color: white;
z-index:1002;
overflow: auto;
}
</style>
<body>
<div class="app app-header-fixed ">
<!-- header -->
<header id="header" class="app-header navbar" role="menu">
<!-- navbar collapse -->
<div class="collapse pos-rlt navbar-collapse bg-info">
<!-- buttons -->
<div class="nav navbar-nav hidden-xs"></div>
<!-- / buttons -->
<!-- link and dropdown -->
<a class="navbar-brand text-lt">
<img src="../img/logo-small.png" alt="." class="small-logo hide">
<img src="../img/logo.png" alt="." class="large-logo">
</a>
<!-- / link and dropdown -->
<!-- nabar right -->
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="bg-blue profile-header dropdown-toggle clear" data-toggle="dropdown">
<span class="thumb-sm avatar pull-left m-t-n-sm m-b-n-sm m-r-sm">
<img src="../img/01.jpg" alt="...">
</span>
<span class="hidden-sm hidden-md m-r-xl">
<?php
require_once('../models/admin.php');
$admin = new Admin;
$nik = $_COOKIE["id_admin"];
echo $admin->getNama($nik);
?>
</span> <i class="text14 icon-bdg_setting3 pull-right"></i>
</a>
<!-- dropdown -->
<ul class="dropdown-menu animated fadeIn w-ml">
<li>
<a href="logout.php">Logout</a>
</li>
</ul>
<!-- / dropdown -->
</li>
</ul>
<!-- / navbar right -->
</div>
<!-- / navbar collapse -->
</header>
<!-- / header -->
<!-- content -->
<div id="content" class="app-content" role="main">
<div class="hbox hbox-auto-xs hbox-auto-sm ng-scope">
<div class="col">
<div class="app-content-body ">
<div class="bg-light lter b-b wrapper-md padder-md">
<h1 class="m-n font-bold h4 padder">Daftar Perkawinan</h1>
</div>
<div class="wrapper-lg">
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div>
<table class="table text-center" ui-jq="footable" ui-options='{"paging": {"enabled": true}}'>
<thead>
<tr>
<th class="text-center">NIK Suami</th>
<th class="text-center">NIK Istri</th>
<th class="text-center">NIK Penghulu</th>
<th class="text-center">Tanggal Perkawinan</th>
<th class="text-center">Tempat Perkawinan</th>
<th class="text-center">Agama Perkawinan</th>
<th class="text-center">Status</th>
</tr>
</thead>
<tbody>
<?php
function TanggalIndo($date){
$BulanIndo = array("Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember");
$tahun = substr($date, 0, 4);
$bulan = substr($date, 5, 2);
$tgl = substr($date, 8, 2);
$result = $tgl . " " . $BulanIndo[(int)$bulan-1] . " ". $tahun;
return($result);
}
foreach ($perkawinan->get_all_perkawinan() as $data) { ?>
<tr>
<td><?php echo $data['nik_suami']; ?></td>
<td><?php echo $data['nik_istri']; ?></td>
<td><?php echo $data['nik_hulu']; ?></td>
<td><?php echo TanggalIndo($data['tanggal_nikah']); ?></td>
<td><?php echo $data['tempat_nikah']; ?></td>
<td><?php echo $data['agama_nikah']; ?></td>
<td><?php if($data['status'] == "On Process") {
echo "<font color=\"blue\">".$data['status']."</font>";?>
<td>
<div id="dialog-<?=$data['id_perkawinan']?>" title="Approval">
<?php
foreach ($penduduk->getPenduduk($data['nik_suami']) as $data2) { ?>
<h5>Suami</h5>
NIK : <?php echo $data2['id']; ?><br>
Nama : <?php echo $data2['nama']; ?><br>
Umur : <?php
$d1 = new DateTime("today");
$d2 = new DateTime($data2['tanggal_lahir']);
$int = $d2->diff($d1);
echo $int->y;
?> tahun<br>
Status Perkawinan : <?php echo $data2['status_perkawinan']; ?><br>
Jenis Kelamin : <?php
if ($data2['jenis_kelamin'] == "l") {
echo "<font color=\"blue\">Pria</font>";
} else {
echo "<font color=\"red\">Wanita</font>";
}
?><br>
Agama : <?php echo $data2['agama']; ?><br>
Kewarganegaraan : <?php
if ($data2['wni'] == "1") {
echo "Indonesia";
} else {
echo "Asing";
}
?><br><br>
<?php
}
foreach ($penduduk->getPenduduk($data['nik_istri']) as $data2) {
?>
<h5>Istri</h5>
NIK : <?php echo $data2['id']; ?><br>
Nama : <?php echo $data2['nama']; ?><br>
Umur : <?php
$d1 = new DateTime("today");
$d2 = new DateTime($data2['tanggal_lahir']);
$int = $d2->diff($d1);
echo $int->y;
?> tahun<br>
Status Perkawinan : <?php echo $data2['status_perkawinan']; ?><br>
Jenis Kelamin : <?php
if ($data2['jenis_kelamin'] == "l") {
echo "<font color=\"blue\">Pria</font>";
} else {
echo "<font color=\"red\">Wanita</font>";
}
?><br>
Agama : <?php echo $data2['agama']; ?><br>
Kewarganegaraan : <?php
if ($data2['wni'] == "1") {
echo "Indonesia";
} else {
echo "Asing";
}
?><br><br>
Kirimkan Pesan : <br>
<?php } ?>
<form id="approval" action="approval.php">
<input type="hidden" name="id" value="<?php echo $data['id_perkawinan']; ?>" >
<input type="text" name="pesan"><br>
<input name="setuju" type="submit" alt="Setuju" value="Setujui"/>
<input name="tolak" type="submit" alt="Tolak" value="Tolak"/>
</form>
</div>
<button id="opener" id_perkawinan="<?=$data['id_perkawinan'];?>">Approval</button>
<div id="fade" class="black_overlay"></div>
</td>
<?php } else if ($data['status'] == "Approved") {
echo "<font color=\"green\">".$data['status']."</font><td></td>";
} else if ($data['status'] == "Declined") {
echo "<font color=\"red\">".$data['status']."</font><td></td>";
} ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- div app content body -->
</div>
</div>
<!-- /content -->
<!-- footer -->
<footer id="footer" class="app-footer" role="footer">
<div class="wrapper-md padder-lg b-t bg-light">
<span class="pull-right">&copy; Copyright Bandung <a href ui-scroll="app" class="m-l-sm text-muted"><i class="icon-bdg_arrow11"></i></a></span>
Made with <i class="text-danger fa fa-heart"></i> in Bandung
</div>
</footer>
<!-- / footer -->
</div>
</div>
</div>
<!-- /content -->
<!-- footer -->
<footer id="footer" class="app-footer" role="footer">
<div class="wrapper-md padder-lg b-t bg-light">
<span class="pull-right">&copy; Copyright Bandung <a href ui-scroll="app" class="m-l-sm text-muted"><i class="icon-bdg_arrow11"></i></a></span>
Made with <i class="text-danger fa fa-heart"></i> in Bandung
</div>
</footer>
<!-- / footer -->
</div>
<script>
$(function() {
$( "[id|=dialog]" ).dialog({
autoOpen: false,
});
$( "[id|=opener]" ).click(function() {
var id_perkawinan = $(this).attr("id_perkawinan");
$( "#dialog-" + id_perkawinan ).dialog( "open" );
});
});
</script>
<script src="../js/ui-load.js"></script>
<script src="../js/ui-jp.config.js"></script>
<script src="../js/ui-jp.js"></script>
<script src="../js/ui-nav.js"></script>
<script src="../js/ui-toggle.js"></script>
<script src="../js/ui-client.js"></script>
</body>
</html>
<?php
} else {
header("Location: index.php");
}
?>
\ No newline at end of file
<!DOCTYPE html>
<?php
if (!isset($_COOKIE["id_admin"])) {
?>
<html lang="en" class="">
<head>
<meta charset="utf-8" />
<title>Admin | Let's Get Married</title>
<meta name="description" content="Bandung Web Kit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="../../libs/assets/animate.css/animate.css" type="text/css" />
<link rel="stylesheet" href="../../libs/assets/font-awesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="../../libs/jquery/bootstrap/dist/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="../css/font.css" type="text/css" />
<link rel="stylesheet" href="../css/style.css" type="text/css" />
</head>
<body>
<div class="app app-header-fixed bg-dark">
<div class="wrapper-lg modal-center animated fadeInUp text-center r-sm" style="width:350px;margin:-250px 0 0 -200px;">
<div class="container w-xxl w-auto-xs" >
<div class="header-signin">
<div class="wrapper-lg text-center">
<img src="../img/logo-lgm.png" alt="LGM">
<p class="m-t-sm m-b-none">Let's Get Married</p>
</div>
</div>
<div class="m-b-lg wrapper-lg bg-white r-b-sm">
<div class=" text-left">
<h4 class="font-bold no-padder m-b-md">Login Admin</h4>
</div>
<form name="loginForm" class="form-validation" method="post" action="login.php">
<div class="list-group list-group-sm">
<div class="form-group">
<input type="text" name ="id" placeholder="NIP" class="form-control" required>
</div>
<div class="form-group">
<input type="password" name="pass" placeholder="Password" class="form-control" required>
</div>
</div>
<button type="submit" class="btn btn-lg btn-info btn-block">SIGN IN</button>
</form>
</div>
</div>
</div>
</div>
<script src="../../libs/jquery/jquery/dist/jquery.js"/>
<script src="../../libs/jquery/bootstrap/dist/js/bootstrap.js"/>
<script src="../js/ui-load.js"/>
<script src="../js/ui-jp.config.js"/>
<script src="../js/ui-jp.js"/>
<script src="../js/ui-nav.js"/>
<script src="../js/ui-toggle.js"/>
<script src="../js/ui-client.js"/>
</body>
</html>
<?php
} else {
header("Location: dashboard.php");
}
?>
\ No newline at end of file
<?php
require ('../models/admin.php');
$admin = new Admin;
$id = $_POST['id'];
$pass = $_POST['pass'];
$statusAdmin = $admin->checkAdmin($id,$pass);
if ($statusAdmin == true) {
$nama = $admin->getNama($id);
setcookie("id_admin", $id, time() + (3600 * 8), "/");
header("Location: dashboard.php");
} else {
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('NIP atau Password yang anda masukkan salah');
window.location.href='index.php';
</SCRIPT>");
}
?>
<?php
setcookie("id_admin", "", time()-3600, "/");
header("Location: index.php");
?>
<?php
require_once('connect.php');
$id = $_GET['id'];
$nik_suami = $_GET['nik_suami'];
$nik_istri = $_GET['nik_istri'];
$conn = connect_lgm();
$sql = "SELECT id_perkawinan, nik_suami, nik_istri FROM perkawinan WHERE
id_perkawinan = '".$id."' AND
nik_suami = '".$nik_suami."' AND
nik_istri = '".$nik_istri."' AND
status = 'Approved'
";
$result = $conn->query($sql);
if (!$result) {
http_response_code(404);
die(mysqli_error());
}
$res = mysqli_fetch_array($result, MYSQLI_NUM);
$resId = (int)$res[0];
$resNikSuami = (string)$res[1];
$resNikIstri = (string)$res[2];
$data = array('id' => $resId, 'nikSuami' => $resNikSuami, 'nikIstri' => $resNikIstri);
echo json_encode($data);
?>
LGM/aktanikah.jpg

421 KiB

<html>
<style>
body {
background: rgb(204,204,204);
}
page {
background: white;
display: block;
margin: 0 auto;
margin-bottom: 0.5cm;
box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}
page[size="A4"] {
width: 25cm;
height: 35cm;
background: url(aktanikah.jpg);
}
page[size="A4"][layout="portrait"] {
width: 29.7cm;
height: 21cm;
background: url(aktanikah.jpg);
}
page[size="A3"] {
width: 29.7cm;
height: 42cm;
}
page[size="A3"][layout="portrait"] {
width: 42cm;
height: 29.7cm;
}
page[size="A5"] {
width: 14.8cm;
height: 21cm;
}
page[size="A5"][layout="portrait"] {
width: 21cm;
height: 14.8cm;
}
@media print {
body, page {
margin: 0;
box-shadow: 0;
}
}
</style>
<page size="A4"><body>
<?php
function Redirect($url, $permanent = false)
{
header('Location: ' . $url, true, $permanent ? 301 : 302);
exit();
}
if(isset($_POST['Post'])){
$order = $_POST['order-id'];
//Data mentah yang ditampilkan ke tabel
$con = mysqli_connect("localhost","root","","lgm");
$query = "SELECT nik_suami, nik_istri FROM perkawinan WHERE id_perkawinan ='".$order."'";
$result = mysqli_query($con, $query);
$row = $result->fetch_assoc();
echo $row['nik_suami'];
}else{
echo '<script>window.history.back()</script>';
}
?>
<form>
<p><label for="NIK" style="z-index: 1; left: 550px; top: 140px; position: absolute;">NIK</label>
</p>
<p>
<label for="WargaNegara" style="z-index: 1; left: 720px; top: 395px; position: absolute;">WargaNegara:</label>
</p>
<p>
<label for="NoAkta" style="z-index: 1; left: 720px; top: 505px; position: absolute;">NoAkta:</label>
</p>
<p>
<label for="UndangUndang" style="z-index: 1; left: 630px; top: 547px; position: absolute;">UndangUndang :</label>
</p>
<p>
<label for="tempat" style="z-index: 1; left: 470px; top: 590px; position: absolute;">tempat:</label>
</p>
<p>
<label for="tanggal" style="z-index: 1; left: 850px; top: 587px; position: absolute;">tanggal:</label>
</p>
<p>
<label for="tahun" style="z-index: 1; left: 470px; top: 630px; position: absolute;">tahun:</label>
</p>
<p>
<label for="namasuami" style="z-index: 1; left: 650px; top: 665px; position: absolute;">namasuami:</label>
</p>
<p>
<label for="namaistri" style="z-index: 1; left: 650px; top: 735px; position: absolute;">namaistri:</label>
</p>
<p>
<label for="agama" style="z-index: 1; left: 900px; top: 770px; position: absolute;">agama:</label>
</p>
<p>
<label for="namapenghulu" style="z-index: 1; left: 520px; top: 815px; position: absolute;">namapenghulu:</label>
</p>
<p>
<label for="tanggal" style="z-index: 1; left: 520px; top: 855px; position: absolute;">tanggal:</label>
</p>
<p>
<label for="tahun" style="z-index: 1; left: 520px; top: 890px; position: absolute;">tahun:</label>
</p>
<p>
<label for="dukcapil" style="z-index: 1; left: 920px; top: 1000px; position: absolute;">dukcapil:</label>
</p>
<p>
<label for="now" style="z-index: 1; left: 900px; top: 1040px; position: absolute;">now:</label>
</p>
<p>
<label for="kepala" style="z-index: 1; left: 870px; top: 1110px; position: absolute;">kepala:</label>
</p>
</form>
</body></page>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset="utf-8" />
<title>Bandung Web Kit | BDGWEBKIT</title>
<meta name="description" content="Bandung Web Kit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="../libs/assets/animate.css/animate.css" type="text/css" />
<link rel="stylesheet" href="../libs/assets/font-awesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="../libs/assets/simple-line-icons/css/simple-line-icons.css" type="text/css" />
<link rel="stylesheet" href="../libs/jquery/bootstrap/dist/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="css/font.css" type="text/css" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<div class="app app-header-fixed ">
<!-- header -->
<header id="header" class="app-header navbar" role="menu">
<!-- navbar header -->
<div class="navbar-header bg-info">
<button class="pull-right visible-xs dk" ui-toggle-class="show" target=".navbar-collapse">
<i class="glyphicon glyphicon-cog"></i>
</button>
<button class="pull-right visible-xs" ui-toggle-class="off-screen" target=".app-aside" ui-scroll="app">
<i class="glyphicon glyphicon-align-justify"></i>
</button>
<!-- brand -->
<a href="#/" class="navbar-brand text-lt">
<img src="img/logo-small.png" alt="." class="small-logo hide">
<img src="img/logo.png" alt="." class="large-logo">
</a>
<!-- / brand -->
</div>
<!-- / navbar header -->
<!-- navbar collapse -->
<div class="collapse pos-rlt navbar-collapse bg-info">
<!-- buttons -->
<div class="nav navbar-nav hidden-xs">
</div>
<!-- / buttons -->
<!-- link and dropdown -->
<ul class="nav navbar-nav hidden-sm">
<li>
<a href="#">HOME</a>
</li>
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">
<i class="fa fa-fw fa-plus visible-xs-inline-block"></i>
<span>PAGES</span> <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="#">
<span class="badge bg-danger pull-right">5</span>
<span>Cetak Akta</span>
</a>
</li>
<li>
<a href="#">
<span class="badge bg-info pull-right">15</span>
<span>Form Validation</span>
</a>
</li>
<li>
<a href="#">
<span>Form Wizard</span>
</a>
</li>
</ul>
</li>
<li>
<a href="#">PROJECT</a>
</li>
</ul>
<!-- / link and dropdown -->
<!-- nabar right -->
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">
<i class="icon-bdg_alert text14"></i>
<span class="visible-xs-inline">Notifikasi</span>
<span class="badge badge-sm up bg-danger pull-right-xs">1</span>
</a>
<!-- dropdown -->
<div class="dropdown-menu w-xl animated fadeIn">
<div class="panel bg-white">
<div class="panel-heading b-light bg-light">
<strong>Kamu Punya <span>1</span> Notifikasi</strong>
</div>
<div class="list-group">
<a href = "displayNotifikasiPerkawinan.php">
<span class="pull-left m-r thumb-sm">
<img src="img/01.jpg" alt="..." class="img-circle">
</span>
<span class="clear block m-b-none">
Approval Pencatatan Sipil<br>
<small class="text-muted">1 minutes ago</small>
</span>
</a>
</div>
<div class="panel-footer text-sm">
<a href class="pull-right"><i class="icon-bdg_setting3"></i></a>
<a href="#notes" data-toggle="class:show animated fadeInRight">Lihat Semua Notifikasi</a>
</div>
</div>
</div>
<!-- / dropdown -->
</li>
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">
<i class="icon-bdg_search text14"></i>
</a>
<!-- dropdown -->
<div class="search_wrapper pull-right w-xl animated fadeIn">
<form action="">
<i class="pull-left glyphicon glyphicon-search"></i>
<input type="text" class="pull-left" placeholder="Type Here">
<a href="#" class="remove-search"><i class="pull-right icon-bdg_cross"></i></a>
</form>
</div>
<!-- / dropdown -->
</li>
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="bg-blue profile-header dropdown-toggle clear" data-toggle="dropdown">
<span class="thumb-sm avatar pull-left m-t-n-sm m-b-n-sm m-r-sm">
<img src="img/01.jpg" alt="...">
</span>
<span class="hidden-sm hidden-md m-r-xl">Ridwan Kamil</span> <i class="text14 icon-bdg_setting3 pull-right"></i>
</a>
<!-- dropdown -->
<ul class="dropdown-menu animated fadeIn w-ml">
<li>
<a href>
<span class="badge bg-danger pull-right">30%</span>
<span>Settings</span>
</a>
</li>
<li>
<a href>Profile</a>
</li>
<li>
<a href>
<span class="label bg-info pull-right">new</span>
Help
</a>
</li>
<li class="divider"></li>
<li>
<a>Logout</a>
</li>
</ul>
<!-- / dropdown -->
</li>
</ul>
<!-- / navbar right -->
</div>
<!-- / navbar collapse -->
</header>
<!-- / header -->
<!-- aside -->
<aside id="aside" class="app-aside hidden-xs bg-dark">
<div class="aside-wrap">
<div class="navi-wrap">
<!-- user -->
<div class="clearfix hidden-xs text-center hide" id="aside-user">
<div class="dropdown wrapper">
<a href="app.page.profile">
<span class="thumb-lg w-auto-folded avatar m-t-sm">
<img src="img/01.jpg" class="img-full" alt="...">
</span>
</a>
<a href="#" data-toggle="dropdown" class="dropdown-toggle hidden-folded">
<span class="clear">
<span class="block m-t-sm">
<strong class="font-bold text-lt">John.Smith</strong>
<b class="caret"></b>
</span>
<span class="text-muted text-xs block">Art Director</span>
</span>
</a>
<!-- dropdown -->
<ul class="dropdown-menu animated fadeInRight w hidden-folded">
<li class="wrapper b-b m-b-sm bg-info m-t-n-xs">
<span class="arrow top hidden-folded arrow-info"></span>
<div>
<p>300mb of 500mb used</p>
</div>
<div class="progress progress-xs m-b-none dker">
<div class="progress-bar bg-white" data-toggle="tooltip" data-original-title="50%" style="width: 50%"></div>
</div>
</li>
<li>
<a href>Settings</a>
</li>
<li>
<a href="page_profile.html">Profile</a>
</li>
<li>
<a href>
<span class="badge bg-danger pull-right">3</span>
Notifications
</a>
</li>
<li class="divider"></li>
<li>
<a href="page_signin.html">Logout</a>
</li>
</ul>
<!-- / dropdown -->
</div>
<div class="line dk hidden-folded"></div>
</div>
<!-- / user -->
<!-- nav -->
<nav ui-nav class="navi clearfix">
<ul class="nav">
<li class="line1 dg"></li>
<li class="hidden-folded text-dark-grey text-xs padder-md padder-v-sm">
<span>Menu</span>
</li>
<li class="active">
<a href="form_registrasiPernikahan.php" class="auto">
<i class="icon-bdg_form"></i>
<span class="font-bold">FormPernikahan</span>
</a>
</li>
<li>
<a href class="auto">
<span class="pull-right text-muted">
<i class="text8 icon-bdg_arrow3 text"></i>
<i class="text8 icon-bdg_arrow1 text-active"></i>
</span>
<i class="icon-bdg_layout"></i>
<span class="font-bold">Pages</span>
</a>
<ul class="nav nav-sub dk">
<li class="nav-sub-header">
<a href>
<span>Pages</span>
</a>
</li>
<li>
<a href="lockscreen.html">
<span>Lock screen</span>
</a>
</li>
<li>
<a href="signin.html">
<span>Signin</span>
</a>
</li>
<li>
<a href="register.html">
<span>Signup</span>
</a>
</li>
<li>
<a href="forgot_password.html">
<span>Forgot password</span>
</a>
</li>
</ul>
</li>
</ul>
</nav>
<!-- nav -->
</div>
</div>
</aside>
<!-- / aside -->
<!-- content -->
<div id="content" class="app-content" role="main">
<div class="hbox hbox-auto-xs hbox-auto-sm ng-scope">
<div class="col">
<div class="bg-light lter">
<ul class="breadcrumb bg-grey-breadcrumb m-b-none">
<li><a href="#" class="btn no-shadow" ui-toggle-class="app-aside-folded" target=".app">
<i class="icon-bdg_expand1 text"></i>
<i class="icon-bdg_expand2 text-active"></i>
</a> </li>
<li><a href>Home</a></li>
<li><i class="fa fa-angle-right"></i><a href>Form</a></li>
<li class="active"><i class="fa fa-angle-right"></i>Cetak Akta</li>
</ul>
</div>
<div class="bg-light lter b-b wrapper-md padder-md">
<h1 class="m-n font-bold h4 padder">Cetak Akta</h1>
</div>
<!-- App-content-body -->
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<form action="cetak.php" method="post">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Konfirmasi Pencetakan</h4>
</div>
<div class="modal-body">
<label>Anda yakin akan mencetak akta nikah tersebut?</label>
<input name="order-id" type="hidden" id="orderId" value="">
</div>
<div class="modal-footer">
<button type="submit" name="Post" class="btn btn-sm btn-warning">OK</button>
<button type="button" data-dismiss="modal" class="btn btn-sm btn-danger">Cancel</button>
</div>
</div>
</form>
</div>
</div>
<div class="wrapper-lg bg-light" ng-controller="FormDemoCtrl">
<div class="panel panel-default">
<div class="panel-heading font-bold">Isi form pernikahan di bawah ini dengan jelas dan lengkap!</div>
<div class="panel-body">
<form role="form" method="post">
<table id="perkawinan" class="table table-bordered table-hover table-striped">
<tr>
<th>No</th>
<th>Id Perkawinan</th>
<th>NIK Suami</th>
<th>NIK Istri</th>
<th>NIK Penghulu</th>
<th>Tempat Nikah</th>
<th>Tanggal Nikah</th>
<th>Agama Nikah</th>
<th>Cetak</th>
</tr>
<tbody>
<?php
//Data mentah yang ditampilkan ke tabel
$con = mysqli_connect("localhost","root","","lgm");
$sql = 'SELECT id_perkawinan, nik_suami, nik_istri, nik_hulu, tempat_nikah, tanggal_nikah, agama_nikah FROM perkawinan';
$result = mysqli_query($con, $sql);
$no = 1;
while ($obj = $result->fetch_object()) {
$id = $obj->id_perkawinan;
$nik_suami = $obj->nik_suami;
$nik_istri = $obj->nik_istri;
$nik_hulu = $obj->nik_hulu;
$tempat_nikah = $obj->tempat_nikah;
$tanggal_nikah = $obj->tanggal_nikah;
$agama_nikah = $obj->agama_nikah;
?>
<tr align='left'>
<td><?php echo $no;?></td>
<td><?php echo $obj->id_perkawinan; ?></td>
<td><?php echo $obj->nik_suami; ?></td>
<td><?php echo $obj->nik_istri; ?></td>
<td><?php echo $obj->nik_hulu; ?></td>
<td><?php echo $obj->tempat_nikah; ?></td>
<td><?php echo $obj->tanggal_nikah; ?></td>
<td><?php echo $obj->agama_nikah; ?></td>
<td>
<buttontype="submit" class="insert-akta btn btn-sm btn-warning" data-toggle="modal" data-target="#myModal" data-id=<?php echo $no?> value=<?php echo $id?> onclick= "validateupdate()">Cetak</button>
<input name="nik_suami" type="hidden" id="<?php echo $no?>" value="<?php echo $nik_suami?>">
<input name="nik_istri" type="hidden" id="<?php echo $no?>" value="<?php echo $nik_istri?>">
<input name="id_perkawinan" type="hidden" id="<?php echo $no?>" value="<?php echo $id?>">
</td>
</tr>
<?php
$no++;
}
?>
</tbody>
</table>
<br>
<script>
var validateupdate = function(){
$(document).on("click", ".insert-akta", function () {
var OrderId = $(this).data('id');
var PerkawinanId = document.getElementsByName("id_perkawinan")[OrderId-1].value;
$(".modal-body #orderId").val( PerkawinanId );
});
};
</script>
</form>
</div>
</div>
<!-- footer -->
<footer id="footer" class="app-footer" role="footer">
<div class="wrapper-md padder-lg b-t bg-light">
<span class="pull-right">&copy; Copyright Bandung <a href ui-scroll="app" class="m-l-sm text-muted"><i class="icon-bdg_arrow11"></i></a></span>
Made with <i class="text-danger fa fa-heart"></i> in Bandung
</div>
</footer>
<!-- / footer -->
</div>
<script src="../libs/jquery/jquery/dist/jquery.js"></script>
<script src="../libs/jquery/bootstrap/dist/js/bootstrap.js"></script>
<script src="js/ui-load.js"></script>
<script src="js/ui-jp.config.js"></script>
<script src="js/ui-jp.js"></script>
<script src="js/ui-nav.js"></script>
<script src="js/ui-toggle.js"></script>
<script src="js/ui-client.js"></script>
</body>
</html>
/* Open Sans */
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-Light-webfont.eot');
src: url('../fonts/opensans/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-Light-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-Light-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-LightItalic-webfont.eot');
src: url('../fonts/opensans/OpenSans-LightItalic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-LightItalic-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-LightItalic-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-LightItalic-webfont.svg#OpenSansLightItalic') format('svg');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-Regular-webfont.eot');
src: url('../fonts/opensans/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-Regular-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-Regular-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-Italic-webfont.eot');
src: url('../fonts/opensans/OpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-Italic-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-Italic-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-Italic-webfont.svg#OpenSansItalic') format('svg');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-Semibold-webfont.eot');
src: url('../fonts/opensans/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-Semibold-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-Semibold-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-SemiboldItalic-webfont.eot');
src: url('../fonts/opensans/OpenSans-SemiboldItalic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-SemiboldItalic-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-Bold-webfont.eot');
src: url('../fonts/opensans/OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-Bold-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-Bold-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-Bold-webfont.svg#OpenSansBold') format('svg');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-BoldItalic-webfont.eot');
src: url('../fonts/opensans/OpenSans-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-BoldItalic-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-BoldItalic-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-BoldItalic-webfont.svg#OpenSansBoldItalic') format('svg');
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: 'Open Sans';
src: url('../fonts/opensans/OpenSans-ExtraBold-webfont.eot');
src: url('../fonts/opensans/OpenSans-ExtraBold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-ExtraBold-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-ExtraBold-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-ExtraBold-webfont.svg#OpenSansExtrabold') format('svg');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'OpenSansExtraboldItalic';
src: url('../fonts/opensans/OpenSans-ExtraBoldItalic-webfont.eot');
src: url('../fonts/opensans/OpenSans-ExtraBoldItalic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans/OpenSans-ExtraBoldItalic-webfont.woff') format('woff'), url('../fonts/opensans/OpenSans-ExtraBoldItalic-webfont.ttf') format('truetype'), url('../fonts/opensans/OpenSans-ExtraBoldItalic-webfont.svg#OpenSansExtraboldItalic') format('svg');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Lobster';
src: url('../fonts/Lobster-Regular.ttf');
font-weight: 800;
font-style: normal;
}
\ No newline at end of file
/*
Icon Font: fontcustom
*/
@font-face {
font-family: "fontcustom";
src: url("./fontcustom_59e54d56264c0766ac8e43b6a782fe06.eot");
src: url("./fontcustom_59e54d56264c0766ac8e43b6a782fe06.eot?#iefix") format("embedded-opentype"),
url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAlMAA0AAAAAEBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAJMAAAABoAAAAcdhvwtk9TLzIAAAGcAAAASgAAAGBBX14PY21hcAAAAfwAAABCAAABQgAP9VRjdnQgAAACQAAAAAQAAAAEABEBRGdhc3AAAAkoAAAACAAAAAj//wADZ2x5ZgAAAowAAATOAAAIwAEpGHZoZWFkAAABMAAAAC4AAAA2Bp7mIWhoZWEAAAFgAAAAHAAAACQD8AHFaG10eAAAAegAAAATAAAATgYAABFsb2NhAAACRAAAAEgAAABIHZAf2m1heHAAAAF8AAAAHwAAACAAawBhbmFtZQAAB1wAAAE0AAACMX6bwtpwb3N0AAAIkAAAAJYAAAFoxctPoHjaY2BkYGAAYlse5fnx/DZfGbiZGEDg0v5LlxD0/wNMDIwHgFwOBrA0ADHxC7AAAHjaY2BkYGA88P8Agx4TAwgASUYGVMACAFCUArl42mNgZGBgUGYwYGBjAAEmIGZkAIk5MOiBBAAMCgDNAHjaY2BhYmCcwMDKwMDow5jGwMDgDqW/MkgytDAwMDGwcjLAgQCCyRCQ5prCcOBj18eVjAf+H2DQYzzA4AAUZkRSosDACAA1kA0DAAB42mNiYBBkAAImKKYMAAAG9QAYAHjaY2BgYGaAYBkGRgYQsAHyGMF8FgYFIM0ChED+x5X//wPJrv//+SqhKhkY2RhgTAZGJiDBxIAKGBmGPQAAArsIVAAAABEBRAAAACoAKgAqAFAAdACGAJgAqgC6AMwA3gDyAQABDgEcASgBOgFYAYYBsgHMAf4CHAI4Am4CoALOAwIDFgNAA3YDrAP2BCQEYHjadVU7b9tWFL6HskQYRuoSMsVYrhrRtMhBhRXrmiIQ28lFPGppAssZyylDMnTIUENBC45t0T+QTbuQwf4FTIYCCdqhU9En9Ae6F0VD9Tv30o7sNKJI3se533l951BYwhFCPKORqAhbbJ+S6O2f2Uvir/5prfr7/lnFwlCcVni5ystndo3+3T8jXpeOdCLpBM7XXzx8SKNi6pAEWkWIeW4JysU1oLtCdKQb+EEs6zKWriS/EtQxoF/D9aK/HqqxGhc/Ul/+EGapUqTa7SInUWAshAWsvy+wBEnXcYO4Y0dJFHeuUVylXKni5+u33WPKi4wy3PlG8ezjTfezD49q/6jio18S2ES4v9Q4VdhDiZd4JOZC5bn6iiz18qUyMsbuGiZ27OOyxLSY0ohUNjoeGZw5jCtlAvgeJCSwl5HLgtOrMom0ESI5HWVAeDyFyGVblsmO7AjS2hb48ObOixd3SoxDI+PB24QUWwlbWW4uLvSUMtVl8myPKsUbqgBBlYilnPhG60M0HR+pm2NSvHpnb5l8PlaUuwY/Kc8tEyXFK8rnYi6u7MXkUMIpuxpD13ejxLVEMYXjj485BthfwtmZlmHOrYhVIdzYdztgkyYI3jiiVIqrrVRGaTHJc9J6qxfcMmc9sYEYn5/EXdcMAducWJLjOxkgAAKSZOAW6KEYKMsAmJVrqtAbGntW2m6Yu87xcgI7Cjp4Sw+kM1r4tsQkTSfMOqDkWg1P0lRrYPP1r4yVxl1hXnmccCTUSyzx+vXg/E/fLkw4epf8XIWfN2AN4sS6CW8f74ovWxa8PbCqWCFErJggXCJtwy12zxSF9l9bgzFmmcqzjOuUC6zU8YFBZ2TOGzKHJGDbFFVW4qE88UvfPbtTnrVjz9Z1w2ezLCtDDJUpF3RtIRbGp0BEqMiudWDtWS3yZRx4e9SyeKEaB26ivZXs20zhX8xms4keUXuGqcAIwGlqXgo5gQRLaZ4ZXauaJzfO+4dmxx4dWCBIi7rkVJg47EBunISXnEEe4LjxG3M0Ju0LyoejAeEFHYYvLdbRshy3uxQ7BxZzOSB0iXP00ljKYGPGC1oRgzMLuTD51rQxfZRmwLbhQSDE1ma4O+g31sLN2lqjP9j1+o0WBfFu2KXNmh4NJH1ycnR0cvT53V7vbq8dD1XYnDVDNYwnR7zxXY83fhrGSjXDsKlUPLzMz44boMGiWWuGzxRibB4z3Ytz+lP34usoRTuqBcYid83eWmvI/m2CMZv0x87JdvxgPH7+NCl+u3crVJ37T1Z3TppPn4/HDz7d//7J/Y4Kb91jCi3yfEXUkSdmhKhCu4OvBpsBxuvBOkmnbhbXNSMmqp21kRx+5vyAkRy6nEOMJoYMgYY5ZxMVkf6Prg3W5QIrYR1ArpuX5Gqq6nWuhCCepWi6E2ZwkTJuqp/cWFLUPToUHil3ATM33y2jKxI9RDWocd3XbGCFXP5hBC0D7gIDZngD3yO74cnarsmtJQ7t5s3t3lZXdbd62zeb9uE7C9nw0XD4aPLe/fOFEYsNL/VOrj3jv6j7b0uC+2VlocOphSai9EUXfC10Qzat5VJdG+RIdLXfupSXUNtko7K5oOuyXLHOVyjVlctFjR9xB1VvqxmlMrmYYJovTMR/GscQTAAAeNqNj71OwzAUhY/7h+hQMXTnDgi1UhOcDh06IKRKmVhopc6ENKQppa7cBNGRR2DsS/BavAYnqQULEli6vp+vr889BtDBBxSO6xw3jhXaeHFcwwneHddxiU/HDbTVheMmztSd4xbrr+xUjVOerqtXJSt0ce+4xrlvjuu4xcFxA13VcdyEqCvHLdYfMIHBFntYZEixRA5BDzH6zENoBBhhQA4RYcWw5Bl7F4wnYGK2e5uly1x6cV+GOhgNJIxWkZVZtsjY8Ej9DVVjFNgxGzyzaDZ5XOxyQ54i4eAC60oc0yQt1hEhdA/LbNmRVIZ8WhKMGb8JH29Kyx537/sDCDkwNDZNZOhrGcuPAR6CkRd4pfV/uJ3Th+VVVjUK9csJfpVLZ5gndpeZjWgd+Fpr+VvzC4kKWnF42l3NNxLCQBQE0W1hhPdOeIoLIKw2/BjdhYSM+3EzoMRETPKqJmkXuGzvl4u+4P63zt6AgBx5ChQJKVGmQpUadRo0adGmQ5cefQYMGRExZsKUGXMWLFmFz8c9jROTZ3mRV3mT6U+/kbHcyp3cy4M8ypNMpJfqe/W9+l59r75X39Q39U19U9/UN/VNfVPf1Df/AWFlTEAAAAAAAAH//wACeNpjYGBgZACCC3O8BUH0pf2XLsFoAEwOCDQAAA==),
url("./fontcustom_59e54d56264c0766ac8e43b6a782fe06.woff") format("woff"),
url("./fontcustom_59e54d56264c0766ac8e43b6a782fe06.ttf") format("truetype"),
url("./fontcustom_59e54d56264c0766ac8e43b6a782fe06.svg#fontcustom") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "fontcustom";
src: url("./fontcustom_59e54d56264c0766ac8e43b6a782fe06.svg#fontcustom") format("svg");
}
}
[data-icon]:before { content: attr(data-icon); }
[data-icon]:before,
.icon-bdg_alert:before,
.icon-bdg_announce:before,
.icon-bdg_arrow1:before,
.icon-bdg_arrow10:before,
.icon-bdg_arrow11:before,
.icon-bdg_arrow12:before,
.icon-bdg_arrow2:before,
.icon-bdg_arrow3:before,
.icon-bdg_arrow4:before,
.icon-bdg_arrow5:before,
.icon-bdg_arrow6:before,
.icon-bdg_arrow7:before,
.icon-bdg_arrow8:before,
.icon-bdg_arrow9:before,
.icon-bdg_chart1:before,
.icon-bdg_chart2:before,
.icon-bdg_chat:before,
.icon-bdg_cross:before,
.icon-bdg_dashboard:before,
.icon-bdg_expand1:before,
.icon-bdg_expand2:before,
.icon-bdg_form:before,
.icon-bdg_invoice:before,
.icon-bdg_layout:before,
.icon-bdg_people:before,
.icon-bdg_plus:before,
.icon-bdg_search:before,
.icon-bdg_setting1:before,
.icon-bdg_setting2:before,
.icon-bdg_setting3:before,
.icon-bdg_table:before,
.icon-bdg_uikit:before {
display: inline-block;
font-family: "fontcustom";
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 1;
text-decoration: inherit;
text-rendering: optimizeLegibility;
text-transform: none;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
}
.icon-bdg_alert:before { content: "\f18a"; }
.icon-bdg_announce:before { content: "\f18b"; }
.icon-bdg_arrow1:before { content: "\f18c"; }
.icon-bdg_arrow10:before { content: "\f18d"; }
.icon-bdg_arrow11:before { content: "\f18e"; }
.icon-bdg_arrow12:before { content: "\f18f"; }
.icon-bdg_arrow2:before { content: "\f190"; }
.icon-bdg_arrow3:before { content: "\f191"; }
.icon-bdg_arrow4:before { content: "\f192"; }
.icon-bdg_arrow5:before { content: "\f193"; }
.icon-bdg_arrow6:before { content: "\f194"; }
.icon-bdg_arrow7:before { content: "\f195"; }
.icon-bdg_arrow8:before { content: "\f196"; }
.icon-bdg_arrow9:before { content: "\f197"; }
.icon-bdg_chart1:before { content: "\f198"; }
.icon-bdg_chart2:before { content: "\f199"; }
.icon-bdg_chat:before { content: "\f19a"; }
.icon-bdg_cross:before { content: "\f19b"; }
.icon-bdg_dashboard:before { content: "\f19c"; }
.icon-bdg_expand1:before { content: "\f19d"; }
.icon-bdg_expand2:before { content: "\f19e"; }
.icon-bdg_form:before { content: "\f19f"; }
.icon-bdg_invoice:before { content: "\f1a0"; }
.icon-bdg_layout:before { content: "\f1a1"; }
.icon-bdg_people:before { content: "\f1a2"; }
.icon-bdg_plus:before { content: "\f1a3"; }
.icon-bdg_search:before { content: "\f1a4"; }
.icon-bdg_setting1:before { content: "\f1a5"; }
.icon-bdg_setting2:before { content: "\f1a6"; }
.icon-bdg_setting3:before { content: "\f1a7"; }
.icon-bdg_table:before { content: "\f1a8"; }
.icon-bdg_uikit:before { content: "\f1a9"; }
/*
*/
@import url(mighticon.css);
html {
background-color: #f0f3f4;
}
body {
font-family: "Open Sans", Helvetica, Arial, sans-serif;
font-size: 12px;
-webkit-font-smoothing: antialiased;
line-height: 1.42857143;
color: #58666e;
background-color: #f4f5f5;
}
.app-content-body {
background-color: #f4f5f5;
}
*:focus {
outline: 0 !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
margin: 0;
}
a {
color: inherit;
text-decoration: none;
cursor: pointer;
}
a:hover,
a:focus {
color: inherit;
text-decoration: none;
}
label {
font-weight: normal;
}
small,
.small {
font-size: 13px;
}
.badge,
.label {
font-weight: bold;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.badge.bg-light,
.label.bg-light {
text-shadow: none;
}
.badge {
background-color: #cfdadd;
}
.badge.up {
position: relative;
top: -10px;
padding: 3px 6px;
margin-left: -10px;
}
.badge-sm {
padding: 2px 5px !important;
font-size: 85%;
}
.label-sm {
padding-top: 0;
padding-bottom: 1px;
}
.badge-white {
padding: 2px 6px;
background-color: transparent;
border: 1px solid rgba(255, 255, 255, 0.35);
}
.badge-empty {
color: inherit;
background-color: transparent;
border: 1px solid rgba(0, 0, 0, 0.15);
}
blockquote {
border-color: #dee5e7;
}
.caret-white {
border-top-color: #fff;
border-top-color: rgba(255, 255, 255, 0.65);
}
a:hover .caret-white {
border-top-color: #fff;
}
.thumbnail {
border-color: #dee5e7;
}
.progress {
background-color: #edf1f2;
}
.progress-xxs {
height: 2px;
}
.progress-xs {
height: 6px;
}
.progress-sm {
height: 12px;
}
.progress-sm .progress-bar {
font-size: 10px;
line-height: 1em;
}
.progress,
.progress-bar {
-webkit-box-shadow: none;
box-shadow: none;
}
.progress-bar-primary {
background-color: #7266ba;
}
.progress-bar-info {
background-color: #23b7e5;
}
.progress-bar-success {
background-color: #27c24c;
}
.progress-bar-warning {
background-color: #fad733;
}
.progress-bar-danger {
background-color: #f05050;
}
.progress-bar-black {
background-color: #1c2b36;
}
.progress-bar-white {
background-color: #fff;
}
.accordion-group,
.accordion-inner {
border-color: #dee5e7;
border-radius: 2px;
}
.alert {
font-size: 13px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.alert .close i {
display: block;
font-size: 12px;
font-weight: normal;
}
.form-control {
border-color: #cfdadd;
border-radius: 2px;
}
.form-control,
.form-control:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.form-control:focus {
border-color: #23b7e5;
}
.form-horizontal .control-label.text-left {
text-align: left;
}
.form-control-spin {
position: absolute;
top: 50%;
right: 10px;
z-index: 2;
margin-top: -7px;
}
.input-group-addon {
background-color: #edf1f2;
border-color: #cfdadd;
}
.list-group {
border-radius: 2px;
}
.list-group.no-radius .list-group-item {
border-radius: 0 !important;
}
.list-group.no-borders .list-group-item {
border: none;
}
.list-group.border-v .list-group-item {
border-top-size:1px;
border-bottom-size:1px;
border-left: 0;
border-right: 0;
}
.list-group.no-border .list-group-item {
border-width: 0;
}
.list-group.no-bg .list-group-item {
background-color: transparent;
}
.list-group-item {
padding-right: 15px;
border-color: #e7ecee;
}
a.list-group-item:hover,
a.list-group-item:focus,
a.list-group-item.hover {
background-color: #f6f8f8;
}
.list-group-item.media {
margin-top: 0;
}
.list-group-item.active {
color: #fff;
background-color: #23b7e5 !important;
border-color: #23b7e5 !important;
}
.list-group-item.active .text-muted {
color: #ace4f5 !important;
}
.list-group-item.active a {
color: #fff;
}
.list-group-item.focus {
background-color: #e4eaec !important;
}
.list-group-item.select {
position: relative;
z-index: 1;
background-color: #dbeef9 !important;
border-color: #c5e4f5;
}
.list-group-alt .list-group-item:nth-child(2n+2) {
background-color: rgba(0, 0, 0, 0.02) !important;
}
.list-group-lg .list-group-item {
padding-top: 15px;
padding-bottom: 15px;
}
.list-group-sm .list-group-item {
padding: 6px 10px;
}
.list-group-sp .list-group-item {
margin-bottom: 5px;
border-radius: 3px;
}
.list-group-item > .badge {
margin-right: 0;
}
.list-group-item > .fa-chevron-right {
float: right;
margin-top: 4px;
margin-right: -5px;
}
.list-group-item > .fa-chevron-right + .badge {
margin-right: 5px;
}
.nav-pills.no-radius > li > a {
border-radius: 0;
}
.nav-pills > li.active > a {
color: #fff !important;
background-color: #23b7e5;
}
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:active {
background-color: #19a9d5;
}
.nav > li > a:hover,
.nav > li > a:focus {
background-color: rgba(0, 0, 0, 0.05);
}
.nav.nav-lg > li > a {
padding: 20px 20px;
}
.nav.nav-md > li > a {
padding: 15px 15px;
}
.nav.nav-sm > li > a {
padding: 6px 12px;
}
.nav.nav-xs > li > a {
padding: 4px 10px;
}
.nav.nav-xxs > li > a {
padding: 1px 10px;
}
.nav.nav-rounded > li > a {
border-radius: 20px;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
/*background-color: rgba(0, 0, 0, 0.05);*/
}
.nav-tabs {
border-color: #dee5e7;
}
.nav-tabs > li > a {
border-bottom-color: #dee5e7;
border-radius: 2px 2px 0 0;
}
.nav-tabs > li:hover > a,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover {
border-color: #dee5e7;
}
.nav-tabs > li.active > a {
border-bottom-color: #fff !important;
}
.nav-tabs-alt .nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-tabs-alt .nav-tabs > li > a {
background: transparent !important;
border-color: transparent !important;
border-bottom-color: #dee5e7 !important;
border-radius: 0;
}
.nav-tabs-alt .nav-tabs > li.active > a {
border-bottom-color: #23b7e5 !important;
}
.tab-container {
margin-bottom: 15px;
}
.tab-container .tab-content {
padding: 15px;
background-color: #fff;
border: 1px solid #dee5e7;
border-top-width: 0;
border-radius: 0 0 2px 2px;
}
.pagination > li > a {
border-color: #dee5e7;
}
.pagination > li > a:hover,
.pagination > li > a:focus {
background-color: #edf1f2;
border-color: #dee5e7;
}
.panel {
border-radius: 2px;
}
.panel .accordion-toggle {
display: block;
font-size: 14px;
cursor: pointer;
}
.panel .list-group-item {
border-color: #edf1f2;
}
.panel.no-borders {
border-width: 0;
}
.panel.no-borders .panel-heading,
.panel.no-borders .panel-footer {
border-width: 0;
}
.panel-heading {
border-radius: 2px 2px 0 0;
}
.panel-default .panel-heading {
background-color: #f6f8f8;
}
.panel-heading.no-border {
margin: -1px -1px 0 -1px;
border: none;
}
.panel-heading .nav {
margin: -10px -15px;
}
.panel-heading .list-group {
background: transparent;
}
.panel-footer {
background-color: #ffffff;
border-color: #edf1f2;
border-radius: 0 0 2px 2px;
}
.panel-default {
border-color: #dee5e7;
}
.panel-default > .panel-heading,
.panel-default > .panel-footer {
border-color: #edf1f2;
}
.panel-group .panel-heading + .panel-collapse .panel-body {
border-top: 1px solid #eaedef;
}
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > td {
padding: 8px 15px;
border-top: 1px solid #eaeff0;
}
.table > thead > tr > th {
padding: 8px 15px;
border-bottom: 1px solid #eaeff0;
}
.table-bordered {
border-color: #eaeff0;
}
.table-bordered > tbody > tr > td {
border-color: #eaeff0;
}
.table-bordered > thead > tr > th {
border-color: #eaeff0;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
background-color: #fafbfc;
}
.table-striped > thead > th {
background-color: #fafbfc;
border-right: 1px solid #eaeff0;
}
.table-striped > thead > th:last-child {
border-right: none;
}
.well,
pre {
background-color: #edf1f2;
border-color: #dee5e7;
}
.dropdown-menu {
border: 1px solid #dee5e7;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 2px;
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.dropdown-menu.pull-left {
left: 100%;
}
.dropdown-menu > .panel {
margin: -5px 0;
border: none;
}
.dropdown-menu > li > a {
padding: 5px 15px;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #58666e;
background-color: #edf1f2 !important;
background-image: none;
filter: none;
}
.dropdown-header {
padding: 5px 15px;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
color: #58666e;
background-color: #edf1f2 !important;
}
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus > .dropdown-menu {
display: block;
}
.dropdown-submenu.pull-left {
float: none !important;
}
.dropdown-submenu.pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
}
.dropdown-submenu .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
}
.dropup .dropdown-submenu > .dropdown-menu {
top: auto;
bottom: 0;
}
.btn-group > .btn {
margin-left: -1px;
}
/*cols*/
.col-lg-2-4 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.col-0 {
clear: left;
}
.row.no-gutter {
margin-right: 0;
margin-left: 0;
}
.no-gutter [class*="col"] {
padding: 0;
}
.row-sm {
margin-right: -10px;
margin-left: -10px;
}
.row-sm > div {
padding-right: 10px;
padding-left: 10px;
}
.modal-backdrop {
background-color: #3a3f51;
}
.modal-backdrop.in {
opacity: 0.8;
filter: alpha(opacity=80);
}
.modal-over {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.modal-center {
position: absolute;
top: 50%;
left: 50%;
}
/*layout*/
html,
body {
width: 100%;
height: 100%;
}
body {
overflow-x: hidden;
}
.app {
position: relative;
width: 100%;
height: auto;
min-height: 100%;
}
.app:before {
position: absolute;
top: 0;
bottom: 0;
z-index: -1;
display: block;
width: inherit;
background-color: #f0f3f4;
border: inherit;
content: "";
}
.app-header-fixed {
padding-top: 50px;
}
.app-header-fixed .app-header {
position: fixed;
top: 0;
width: 100%;
}
.app-header {
z-index: 1025;
border-radius: 0;
}
.app-aside {
float: left;
}
.app-aside:before {
position: absolute;
top: 0;
bottom: 0;
z-index: 0;
width: inherit;
background-color: inherit;
border: inherit;
content: "";
}
.app-aside-footer {
position: absolute;
bottom: 0;
z-index: 1000;
width: 100%;
max-width: 200px;
}
.app-aside-folded .app-aside-footer {
max-width: 60px;
}
.app-aside-footer ~ div {
padding-bottom: 50px;
}
.app-aside-right {
padding-bottom: 50px;
}
.app-content {
height: 100%;
}
.app-content:before,
.app-content:after {
display: table;
content: " ";
}
.app-content:after {
clear: both;
}
.app-content-full {
position: absolute;
top: 50px;
bottom: 50px;
width: auto !important;
height: auto;
padding: 0 !important;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.app-content-full.h-full {
bottom: 0;
height: auto;
}
.app-content-body {
float: left;
width: 100%;
padding-bottom: 0;
}
.app-footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 1005;
}
.app-footer.app-footer-fixed {
position: fixed;
}
.hbox {
display: table;
width: 100%;
height: 100%;
border-spacing: 0;
table-layout: fixed;
}
.hbox .col {
display: table-cell;
float: none;
height: 100%;
vertical-align: top;
}
.v-middle {
vertical-align: middle !important;
}
.v-top {
vertical-align: top !important;
}
.v-bottom {
vertical-align: bottom !important;
}
.vbox {
position: relative;
display: table;
width: 100%;
height: 100%;
min-height: 240px;
border-spacing: 0;
}
.vbox .row-row {
display: table-row;
height: 100%;
}
.vbox .row-row .cell {
position: relative;
width: 100%;
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.ie .vbox .row-row .cell {
display: table-cell;
}
.vbox .row-row .cell .cell-inner {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.navbar {
margin: 0;
border-width: 0;
border-radius: 0;
}
.navbar .navbar-form-sm {
margin-top: 10px;
margin-bottom: 10px;
}
.navbar-md {
min-height: 60px;
}
.navbar-md .navbar-btn {
margin-top: 13px;
}
.navbar-md .navbar-form {
margin-top: 15px;
}
.navbar-md .navbar-nav > li > a {
padding-top: 20px;
padding-bottom: 20px;
}
.navbar-md .navbar-brand {
line-height: 60px;
}
.navbar-header > button {
padding: 10px 17px;
font-size: 16px;
line-height: 30px;
text-decoration: none;
background-color: transparent;
border: none;
}
.navbar-brand {
display: inline-block;
float: none;
height: auto;
padding: 0 20px;
font-size: 20px;
font-weight: 700;
line-height: 50px;
text-align: center;
}
.navbar-brand:hover {
text-decoration: none;
}
.navbar-brand img {
display: inline;
max-height: 20px;
margin-top: -4px;
vertical-align: middle;
}
@media (min-width: 768px) {
.app-aside,
.navbar-header {
width: 200px;
}
.navbar-collapse,
.app-content,
.app-footer {
margin-left: 0px;
}
.app-aside-right {
position: absolute;
top: 50px;
right: 0;
bottom: 0;
z-index: 1000;
}
.app-aside-right.pos-fix {
z-index: 1010;
}
.visible-folded {
display: none;
}
.app-aside-folded .hidden-folded {
display: none !important;
}
.app-aside-folded .visible-folded {
display: inherit;
}
.app-aside-folded .text-center-folded {
text-align: center;
}
.app-aside-folded .pull-none-folded {
float: none !important;
}
.app-aside-folded .w-auto-folded {
width: auto;
}
.app-aside-folded .app-aside,
.app-aside-folded .navbar-header {
width: 60px;
}
.app-aside-folded .navbar-collapse,
.app-aside-folded .app-content,
.app-aside-folded .app-footer {
margin-left: 60px;
}
.app-aside-folded .app-header .navbar-brand {
display: block;
padding: 0;
}
.app-aside-fixed .app-aside:before {
position: fixed;
}
.app-aside-fixed .app-header .navbar-header {
position: fixed;
}
.app-aside-fixed .aside-wrap {
position: fixed;
top: 50px;
bottom: 0;
left: 0;
z-index: 1000;
width: 199px;
overflow: hidden;
}
.app-aside-fixed .aside-wrap .navi-wrap {
position: relative;
width: 217px;
height: 100%;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
.app-aside-fixed .aside-wrap .navi-wrap::-webkit-scrollbar {
-webkit-appearance: none;
}
.app-aside-fixed .aside-wrap .navi-wrap::-webkit-scrollbar:vertical {
width: 17px;
}
.app-aside-fixed .aside-wrap .navi-wrap > * {
width: 200px;
}
.smart .app-aside-fixed .aside-wrap .navi-wrap {
width: 200px;
}
.app-aside-fixed.app-aside-folded .app-aside {
position: fixed;
top: 0;
bottom: 0;
z-index: 1010;
}
.app-aside-fixed.app-aside-folded .aside-wrap {
width: 59px;
}
.app-aside-fixed.app-aside-folded .aside-wrap .navi-wrap {
width: 77px;
}
.app-aside-fixed.app-aside-folded .aside-wrap .navi-wrap > * {
width: 60px;
}
.smart .app-aside-fixed.app-aside-folded .aside-wrap .navi-wrap {
width: 60px;
}
.bg-auto:before {
position: absolute;
top: 0;
bottom: 0;
z-index: -1;
width: inherit;
background-color: inherit;
border: inherit;
content: "";
}
.bg-auto.b-l:before {
margin-left: -1px;
}
.bg-auto.b-r:before {
margin-right: -1px;
}
.col.show {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.hbox-auto-sm {
display: block;
}
.hbox-auto-sm > .col {
display: block;
width: auto;
height: auto;
}
.hbox-auto-sm > .col.show {
display: block !important;
}
}
@media (max-width: 767px) {
body {
height: auto;
min-height: 100%;
}
.navbar-fixed-bottom {
position: fixed;
}
.app-aside {
float: none;
}
.app-content-full {
position: relative;
top: 0;
width: 100% !important;
}
.hbox-auto-xs {
display: block;
}
.hbox-auto-xs > .col {
display: block;
width: auto;
height: auto;
}
.navbar-nav {
margin-top: 0;
margin-bottom: 0;
}
.navbar-nav > li > a {
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.navbar-nav > li > a .up {
top: 0;
}
.navbar-nav > li > a .avatar {
width: 30px;
margin-top: -5px;
}
.navbar-nav .open .dropdown-menu {
background-color: #fff;
}
.navbar-form {
margin-top: 0 !important;
margin-bottom: 0 !important;
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.navbar-form .form-group {
margin-bottom: 0;
}
}
html.bg {
background: url('../img/bg.jpg');
background-attachment: fixed;
background-size: cover;
}
.app.container {
padding-right: 0;
padding-left: 0;
}
@media (min-width: 768px) {
.app.container {
width: 750px;
-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.app.container .app-aside {
overflow-x: hidden;
}
.app.container.app-aside-folded .app-aside {
overflow-x: visible;
}
.app.container.app-aside-fixed .aside-wrap {
left: inherit;
}
.app.container.app-aside-fixed.app-aside-folded .app-aside > ul.nav {
position: absolute;
}
.app.container .app-header,
.app.container .app-aside {
max-width: 750px;
}
.app.container .app-footer-fixed {
right: auto;
left: auto;
width: 100%;
max-width: 550px;
}
.app.container.app-aside-folded .app-footer-fixed {
max-width: 690px;
}
.app.container.app-aside-dock .app-footer-fixed {
max-width: 750px;
}
}
@media (min-width: 992px) {
.app.container {
width: 970px;
}
.app.container .app-header,
.app.container .app-aside {
max-width: 970px;
}
.app.container .app-footer-fixed {
max-width: 770px;
}
.app.container.app-aside-folded .app-footer-fixed {
max-width: 910px;
}
.app.container.app-aside-dock .app-footer-fixed {
max-width: 970px;
}
}
@media (min-width: 1200px) {
.app.container {
width: 1170px;
}
.app.container .app-header,
.app.container .app-aside {
max-width: 1170px;
}
.app.container .app-footer-fixed {
max-width: 970px;
}
.app.container.app-aside-folded .app-footer-fixed {
max-width: 1110px;
}
.app.container.app-aside-dock .app-footer-fixed {
max-width: 1170px;
}
}
.nav-sub {
height: 0;
margin-left: -20px;
overflow: hidden;
opacity: 0;
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
.active > .nav-sub,
.app-aside-folded li:hover > .nav-sub,
.app-aside-folded li:focus > .nav-sub,
.app-aside-folded li:active > .nav-sub {
height: auto !important;
margin-left: 0;
overflow: auto;
opacity: 1;
}
.nav-sub-header {
display: none !important;
}
.nav-sub-header a {
padding: 15px 20px;
}
.navi ul.nav li {
position: relative;
display: block;
}
.navi ul.nav li li a {
padding-left: 55px;
}
.navi ul.nav li li ul {
display: none;
}
.navi ul.nav li li.active > ul {
display: block;
}
.navi ul.nav li a {
position: relative;
display: block;
padding: 10px 20px;
font-weight: normal;
text-transform: none;
-webkit-transition: background-color 0.2s ease-in-out 0s;
transition: background-color 0.2s ease-in-out 0s;
}
.navi ul.nav li a .badge,
.navi ul.nav li a .label {
padding: 2px 5px;
margin-top: 2px;
font-size: 11px;
}
.navi ul.nav li a > i {
position: relative;
float: left;
width: 40px;
margin: -10px -10px;
margin-right: 5px;
overflow: hidden;
line-height: 40px;
text-align: center;
}
.navi ul.nav li a > i:before {
position: relative;
z-index: 2;
}
@media (min-width: 768px) {
.app-aside-folded .nav-sub-header {
display: block !important;
}
.app-aside-folded .nav-sub-header a {
padding: 15px 20px !important;
}
.app-aside-folded .navi > ul > li > a {
position: relative;
height: 50px;
padding: 0;
text-align: center;
border: none;
}
.app-aside-folded .navi > ul > li > a span {
display: none;
}
.app-aside-folded .navi > ul > li > a span.pull-right {
display: none !important;
}
.app-aside-folded .navi > ul > li > a i {
display: block;
float: none;
width: auto;
margin: 0;
font-size: 16px;
line-height: 50px;
border: none !important;
}
.app-aside-folded .navi > ul > li > a i b {
left: 0 !important;
}
.app-aside-folded .navi > ul > li > a .badge,
.app-aside-folded .navi > ul > li > a .label {
position: absolute;
top: 8px;
right: 12px;
z-index: 3;
}
.app-aside-folded .navi > ul > li > ul {
position: absolute;
top: 0 !important;
left: 100%;
z-index: 1050;
width: 200px;
height: 0 !important;
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.app-aside-folded .navi li li a {
padding-left: 20px !important;
}
.app-aside-folded.app-aside-fixed .app-aside > ul.nav {
position: fixed;
left: 80px;
z-index: 1010;
display: block;
width: 260px;
height: auto;
overflow: visible;
overflow-y: auto;
opacity: 1;
-webkit-overflow-scrolling: touch;
}
.app-aside-folded.app-aside-fixed .app-aside > ul.nav:before {
position: absolute;
top: 0;
left: -60px;
width: 60px;
height: 50px;
content: "";
}
.app-aside-folded.app-aside-fixed .app-aside > ul.nav a {
padding-right: 20px !important;
padding-left: 20px !important;
}
}
@media (max-width: 767px) {
html,
body {
overflow-x: hidden !important;
}
.app {
overflow-x: hidden;
}
.app-content {
-webkit-transition: -webkit-transform 0.2s ease;
-moz-transition: -moz-transform 0.2s ease;
-o-transition: -o-transform 0.2s ease;
transition: transform 0.2s ease;
}
.off-screen {
position: fixed;
top: 50px;
bottom: 0;
z-index: 1010;
display: block !important;
width: 75%;
overflow-x: hidden;
overflow-y: auto;
visibility: visible;
-webkit-overflow-scrolling: touch;
}
.off-screen + * {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1015;
width: 100%;
padding-top: 50px;
overflow: hidden;
background-color: #f0f3f4;
-webkit-transform: translate3d(75%, 0, 0px);
transform: translate3d(75%, 0, 0px);
-webkit-transition: -webkit-transform 0.2s ease;
-moz-transition: -moz-transform 0.2s ease;
-o-transition: -o-transform 0.2s ease;
transition: transform 0.2s ease;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
}
.off-screen + * .off-screen-toggle {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1020;
display: block !important;
}
.off-screen.pull-right {
right: 0;
}
.off-screen.pull-right + * {
-webkit-transform: translate3d(-75%, 0, 0px);
transform: translate3d(-75%, 0, 0px);
}
}
@media (min-width: 992px) {
.app-aside-dock .app-content,
.app-aside-dock .app-footer {
margin-left: 0;
}
.app-aside-dock .app-aside-footer ~ div {
padding-bottom: 0;
}
.app-aside-dock.app-aside-fixed.app-header-fixed {
padding-top: 115px;
}
.app-aside-dock.app-aside-fixed .app-aside {
position: fixed;
top: 50px;
z-index: 1000;
width: 100%;
}
.app-aside-dock .app-aside,
.app-aside-dock .aside-wrap,
.app-aside-dock .navi-wrap {
position: relative;
top: 0;
float: none;
width: 100% !important;
overflow: visible !important;
}
.app-aside-dock .navi-wrap > * {
width: auto !important;
}
.app-aside-dock .app-aside {
bottom: auto !important;
}
.app-aside-dock .app-aside.b-r {
border-bottom: 1px solid #dee5e7;
border-right-width: 0;
}
.app-aside-dock .app-aside:before {
display: none;
}
.app-aside-dock .app-aside nav > .nav {
float: left;
}
.app-aside-dock .app-aside .hidden-folded,
.app-aside-dock .app-aside .line,
.app-aside-dock .app-aside .navi-wrap > div {
display: none !important;
}
.app-aside-dock .app-aside .navi > ul > li {
position: relative;
display: inline-block;
float: left;
}
.app-aside-dock .app-aside .navi > ul > li > a {
height: auto;
padding: 10px 15px 12px 15px;
text-align: center;
}
.app-aside-dock .app-aside .navi > ul > li > a > .badge,
.app-aside-dock .app-aside .navi > ul > li > a > .label {
position: absolute;
top: 5px;
right: 8px;
padding: 1px 4px;
}
.app-aside-dock .app-aside .navi > ul > li > a > i {
display: block;
float: none;
width: 40px;
margin-top: -10px;
margin-right: auto;
margin-bottom: -7px;
margin-left: auto;
font-size: 14px;
line-height: 40px;
}
.app-aside-dock .app-aside .navi > ul > li > a > span.pull-right {
position: absolute;
bottom: 2px;
left: 50%;
display: block !important;
margin-left: -6px;
line-height: 1;
}
.app-aside-dock .app-aside .navi > ul > li > a > span.pull-right i {
width: 12px;
font-size: 12px;
line-height: 12px;
}
.app-aside-dock .app-aside .navi > ul > li > a > span.pull-right i.text {
line-height: 14px;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.app-aside-dock .app-aside .navi > ul > li > a > span {
display: block;
font-weight: normal;
}
.app-aside-dock .app-aside .navi > ul > li .nav-sub {
position: absolute;
top: auto !important;
left: 0;
z-index: 1050;
display: none;
width: 200px;
height: auto !important;
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.app-aside-dock .app-aside .navi > ul > li .nav-sub-header {
display: none !important;
}
.app-aside-dock .app-aside .navi li li a {
padding-left: 15px;
}
.app-aside-dock .app-aside .navi li:hover > .nav-sub,
.app-aside-dock .app-aside .navi li:focus > .nav-sub,
.app-aside-dock .app-aside .navi li:active > .nav-sub {
display: block;
height: auto !important;
margin-left: 0;
overflow: auto;
opacity: 1;
}
}
.arrow {
z-index: 10;
border-width: 9px;
}
.arrow,
.arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.arrow:after {
border-width: 8px;
content: "";
}
.arrow.top {
top: -9px;
left: 50%;
margin-left: -9px;
border-bottom-color: rgba(0, 0, 0, 0.1);
border-top-width: 0;
}
.arrow.top:after {
top: 1px;
margin-left: -8px;
border-bottom-color: #ffffff;
border-top-width: 0;
}
.arrow.top.arrow-primary:after {
border-bottom-color: #7266ba;
}
.arrow.top.arrow-info:after {
border-bottom-color: #23b7e5;
}
.arrow.top.arrow-success:after {
border-bottom-color: #27c24c;
}
.arrow.top.arrow-danger:after {
border-bottom-color: #f05050;
}
.arrow.top.arrow-warning:after {
border-bottom-color: #fad733;
}
.arrow.top.arrow-light:after {
border-bottom-color: #edf1f2;
}
.arrow.top.arrow-dark:after {
border-bottom-color: #3a3f51;
}
.arrow.top.arrow-black:after {
border-bottom-color: #1c2b36;
}
.arrow.right {
top: 50%;
right: -9px;
margin-top: -9px;
border-left-color: rgba(0, 0, 0, 0.1);
border-right-width: 0;
}
.arrow.right:after {
right: 1px;
bottom: -8px;
border-left-color: #ffffff;
border-right-width: 0;
}
.arrow.right.arrow-primary:after {
border-left-color: #7266ba;
}
.arrow.right.arrow-info:after {
border-left-color: #23b7e5;
}
.arrow.right.arrow-success:after {
border-left-color: #27c24c;
}
.arrow.right.arrow-danger:after {
border-left-color: #f05050;
}
.arrow.right.arrow-warning:after {
border-left-color: #fad733;
}
.arrow.right.arrow-light:after {
border-left-color: #edf1f2;
}
.arrow.right.arrow-dark:after {
border-left-color: #3a3f51;
}
.arrow.right.arrow-black:after {
border-left-color: #1c2b36;
}
.arrow.bottom {
bottom: -9px;
left: 50%;
margin-left: -9px;
border-top-color: rgba(0, 0, 0, 0.1);
border-bottom-width: 0;
}
.arrow.bottom:after {
bottom: 1px;
margin-left: -8px;
border-top-color: #ffffff;
border-bottom-width: 0;
}
.arrow.bottom.arrow-primary:after {
border-top-color: #7266ba;
}
.arrow.bottom.arrow-info:after {
border-top-color: #23b7e5;
}
.arrow.bottom.arrow-success:after {
border-top-color: #27c24c;
}
.arrow.bottom.arrow-danger:after {
border-top-color: #f05050;
}
.arrow.bottom.arrow-warning:after {
border-top-color: #fad733;
}
.arrow.bottom.arrow-light:after {
border-top-color: #edf1f2;
}
.arrow.bottom.arrow-dark:after {
border-top-color: #3a3f51;
}
.arrow.bottom.arrow-black:after {
border-top-color: #1c2b36;
}
.arrow.left {
top: 50%;
left: -9px;
margin-top: -9px;
border-right-color: rgba(0, 0, 0, 0.1);
border-left-width: 0;
}
.arrow.left:after {
bottom: -8px;
left: 1px;
border-right-color: #ffffff;
border-left-width: 0;
}
.arrow.left.arrow-primary:after {
border-right-color: #7266ba;
}
.arrow.left.arrow-info:after {
border-right-color: #23b7e5;
}
.arrow.left.arrow-success:after {
border-right-color: #27c24c;
}
.arrow.left.arrow-danger:after {
border-right-color: #f05050;
}
.arrow.left.arrow-warning:after {
border-right-color: #fad733;
}
.arrow.left.arrow-light:after {
border-right-color: #edf1f2;
}
.arrow.left.arrow-dark:after {
border-right-color: #3a3f51;
}
.arrow.left.arrow-black:after {
border-right-color: #1c2b36;
}
.arrow.pull-left {
left: 19px;
}
.arrow.pull-right {
right: 19px;
left: auto;
}
.arrow.pull-up {
top: 19px;
}
.arrow.pull-down {
top: auto;
bottom: 19px;
}
.btn {
font-weight: 500;
border-radius: 2px;
outline: 0!important;
}
.btn-link {
color: #58666e;
}
.btn-link.active {
box-shadow: none;
webkit-box-shadow: none;
}
.btn-default {
color: #58666e !important;
background-color: #fcfdfd;
background-color: #fff;
border-color: #dee5e7;
border-bottom-color: #d8e1e3;
-webkit-box-shadow: 0 1px 1px rgba(90, 90, 90, 0.1);
box-shadow: 0 1px 1px rgba(90, 90, 90, 0.1);
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
color: #58666e !important;
background-color: #edf1f2;
border-color: #c7d3d6;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
background-color: #fcfdfd;
border-color: #dee5e7;
}
.btn-default.btn-bg {
border-color: rgba(0, 0, 0, 0.1);
background-clip: padding-box;
}
.btn-primary {
color: #ffffff !important;
background-color: #7266ba;
border-color: #7266ba;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
color: #ffffff !important;
background-color: #6254b2;
border-color: #5a4daa;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
background-color: #7266ba;
border-color: #7266ba;
}
.btn-success {
color: #ffffff !important;
background-color: #27c24c;
border-color: #27c24c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
color: #ffffff !important;
background-color: #23ad44;
border-color: #20a03f;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
background-color: #27c24c;
border-color: #27c24c;
}
.btn-info {
color: #ffffff !important;
background-color: #23b7e5;
border-color: #23b7e5;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
color: #ffffff !important;
background-color: #19a9d5;
border-color: #189ec8;
}
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
background-color: #23b7e5;
border-color: #23b7e5;
}
.btn-warning {
color: #ffffff !important;
background-color: #fad733;
border-color: #fad733;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
color: #ffffff !important;
background-color: #f9d21a;
border-color: #f9cf0b;
}
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
background-color: #fad733;
border-color: #fad733;
}
.btn-danger {
color: #ffffff !important;
background-color: #f05050;
border-color: #f05050;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
color: #ffffff !important;
background-color: #ee3939;
border-color: #ed2a2a;
}
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
background-color: #f05050;
border-color: #f05050;
}
.btn-dark {
color: #ffffff !important;
background-color: #3a3f51;
border-color: #3a3f51;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.open .dropdown-toggle.btn-dark {
color: #ffffff !important;
background-color: #2f3342;
border-color: #292d39;
}
.btn-dark:active,
.btn-dark.active,
.open .dropdown-toggle.btn-dark {
background-image: none;
}
.btn-dark.disabled,
.btn-dark[disabled],
fieldset[disabled] .btn-dark,
.btn-dark.disabled:hover,
.btn-dark[disabled]:hover,
fieldset[disabled] .btn-dark:hover,
.btn-dark.disabled:focus,
.btn-dark[disabled]:focus,
fieldset[disabled] .btn-dark:focus,
.btn-dark.disabled:active,
.btn-dark[disabled]:active,
fieldset[disabled] .btn-dark:active,
.btn-dark.disabled.active,
.btn-dark[disabled].active,
fieldset[disabled] .btn-dark.active {
background-color: #3a3f51;
border-color: #3a3f51;
}
.btn-black {
color: #ffffff !important;
background-color: #1c2b36;
border-color: #1c2b36;
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black.active,
.open .dropdown-toggle.btn-black {
color: #ffffff !important;
background-color: #131e25;
border-color: #0e161b;
}
.btn-black:active,
.btn-black.active,
.open .dropdown-toggle.btn-black {
background-image: none;
}
.btn-black.disabled,
.btn-black[disabled],
fieldset[disabled] .btn-black,
.btn-black.disabled:hover,
.btn-black[disabled]:hover,
fieldset[disabled] .btn-black:hover,
.btn-black.disabled:focus,
.btn-black[disabled]:focus,
fieldset[disabled] .btn-black:focus,
.btn-black.disabled:active,
.btn-black[disabled]:active,
fieldset[disabled] .btn-black:active,
.btn-black.disabled.active,
.btn-black[disabled].active,
fieldset[disabled] .btn-black.active {
background-color: #1c2b36;
border-color: #1c2b36;
}
.btn-icon {
width: 34px;
height: 34px;
padding: 0 !important;
text-align: center;
}
.btn-icon i {
position: relative;
top: -1px;
line-height: 34px;
}
.btn-icon.btn-sm {
width: 30px;
height: 30px;
}
.btn-icon.btn-sm i {
line-height: 30px;
}
.btn-icon.btn-lg {
width: 45px;
height: 45px;
}
.btn-icon.btn-lg i {
line-height: 45px;
}
.btn-rounded {
padding-right: 15px;
padding-left: 15px;
border-radius: 50px;
}
.btn-rounded.btn-lg {
padding-right: 25px;
padding-left: 25px;
}
.btn > i.pull-left,
.btn > i.pull-right {
line-height: 1.42857143;
}
.btn-block {
padding-right: 12px;
padding-left: 12px;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-right-radius: 2px;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-bottom-left-radius: 2px;
}
.btn-addon i {
position: relative;
float: left;
width: 34px;
height: 34px;
margin: -7px -12px;
margin-right: 12px;
line-height: 34px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
border-radius: 2px 0 0 2px;
}
.btn-addon i.pull-right {
margin-right: -12px;
margin-left: 12px;
border-radius: 0 2px 2px 0;
}
.btn-addon.btn-sm i {
width: 30px;
height: 30px;
margin: -6px -10px;
margin-right: 10px;
line-height: 30px;
}
.btn-addon.btn-sm i.pull-right {
margin-right: -10px;
margin-left: 10px;
}
.btn-addon.btn-lg i {
width: 45px;
height: 45px;
margin: -11px -16px;
margin-right: 16px;
line-height: 45px;
}
.btn-addon.btn-lg i.pull-right {
margin-right: -16px;
margin-left: 16px;
}
.btn-addon.btn-default i {
background-color: transparent;
border-right: 1px solid #dee5e7;
}
.btn-groups .btn {
margin-bottom: 5px;
}
.list-icon i {
display: inline-block;
width: 40px;
margin: 0;
text-align: center;
vertical-align: middle;
-webkit-transition: font-size 0.2s;
transition: font-size 0.2s;
}
.list-icon div {
line-height: 40px;
white-space: nowrap;
}
.settings {
position: fixed;
top: 120px;
right: -240px;
z-index: 1050;
width: 240px;
-webkit-transition: right 0.2s;
transition: right 0.2s;
}
.settings.active {
right: -1px;
}
.settings > .btn {
position: absolute;
top: -1px;
left: -42px;
padding: 10px 15px;
background: #f6f8f8 !important;
border-color: #dee5e7;
border-right-width: 0;
}
.settings .i-checks span b {
display: inline-block;
float: left;
width: 50%;
height: 20px;
}
.settings .i-checks span b.header {
height: 10px;
}
.streamline {
position: relative;
border-color: #dee5e7;
}
.streamline .sl-item:after,
.streamline:after {
position: absolute;
bottom: 0;
left: 0;
width: 9px;
height: 9px;
margin-left: -5px;
background-color: #fff;
border-color: inherit;
border-style: solid;
border-width: 1px;
border-radius: 10px;
content: '';
}
.sl-item {
position: relative;
padding-bottom: 1px;
border-color: #dee5e7;
}
.sl-item:before,
.sl-item:after {
display: table;
content: " ";
}
.sl-item:after {
clear: both;
}
.sl-item:after {
top: 6px;
bottom: auto;
}
.sl-item.b-l {
margin-left: -1px;
}
.timeline {
padding: 0;
margin: 0;
}
.tl-item {
display: block;
}
.tl-item:before,
.tl-item:after {
display: table;
content: " ";
}
.tl-item:after {
clear: both;
}
.visible-left {
display: none;
}
.tl-wrap {
display: block;
padding: 15px 0 15px 20px;
margin-left: 6em;
border-color: #dee5e7;
border-style: solid;
border-width: 0 0 0 4px;
}
.tl-wrap:before,
.tl-wrap:after {
display: table;
content: " ";
}
.tl-wrap:after {
clear: both;
}
.tl-wrap:before {
position: relative;
top: 15px;
float: left;
width: 10px;
height: 10px;
margin-left: -27px;
background: #edf1f2;
border-color: inherit;
border-style: solid;
border-width: 3px;
border-radius: 50%;
content: "";
box-shadow: 0 0 0 4px #f0f3f4;
}
.tl-wrap:hover:before {
background: transparent;
border-color: #fff;
}
.tl-date {
position: relative;
top: 10px;
display: block;
float: left;
width: 4.5em;
margin-left: -7.5em;
text-align: right;
}
.tl-content {
position: relative;
display: inline-block;
padding-top: 10px;
padding-bottom: 10px;
}
.tl-content.block {
display: block;
width: 100%;
}
.tl-content.panel {
margin-bottom: 0;
}
.tl-header {
display: block;
width: 12em;
margin-left: 2px;
text-align: center;
}
.timeline-center .tl-item {
margin-left: 50%;
}
.timeline-center .tl-item .tl-wrap {
margin-left: -2px;
}
.timeline-center .tl-header {
width: auto;
margin: 0;
}
.timeline-center .tl-left {
margin-right: 50%;
margin-left: 0;
}
.timeline-center .tl-left .hidden-left {
display: none !important;
}
.timeline-center .tl-left .visible-left {
display: inherit;
}
.timeline-center .tl-left .tl-wrap {
float: right;
padding-right: 20px;
padding-left: 0;
margin-right: -2px;
border-right-width: 4px;
border-left-width: 0;
}
.timeline-center .tl-left .tl-wrap:before {
float: right;
margin-right: -27px;
margin-left: 0;
}
.timeline-center .tl-left .tl-date {
float: right;
margin-right: -8.5em;
margin-left: 0;
text-align: left;
}
.i-switch {
position: relative;
display: inline-block;
width: 35px;
height: 20px;
margin: 0;
cursor: pointer;
background-color: #27c24c;
border-radius: 30px;
}
.i-switch input {
position: absolute;
opacity: 0;
filter: alpha(opacity=0);
}
.i-switch input:checked + i:before {
top: 50%;
right: 5px;
bottom: 50%;
left: 50%;
border-width: 0;
border-radius: 5px;
}
.i-switch input:checked + i:after {
margin-left: 16px;
}
.i-switch i:before {
position: absolute;
top: -1px;
right: -1px;
bottom: -1px;
left: -1px;
background-color: #fff;
border: 1px solid #f0f0f0;
border-radius: 30px;
content: "";
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.i-switch i:after {
position: absolute;
top: 1px;
bottom: 1px;
width: 18px;
background-color: #fff;
border-radius: 50%;
content: "";
-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
-webkit-transition: margin-left 0.3s;
transition: margin-left 0.3s;
}
.i-switch-md {
width: 40px;
height: 24px;
}
.i-switch-md input:checked + i:after {
margin-left: 17px;
}
.i-switch-md i:after {
width: 22px;
}
.i-switch-lg {
width: 50px;
height: 30px;
}
.i-switch-lg input:checked + i:after {
margin-left: 21px;
}
.i-switch-lg i:after {
width: 28px;
}
.i-checks {
padding-left: 20px;
cursor: pointer;
}
.i-checks input {
position: absolute;
margin-left: -20px;
opacity: 0;
}
.i-checks input:checked + i {
border-color: #23b7e5;
}
.i-checks input:checked + i:before {
top: 4px;
left: 4px;
width: 10px;
height: 10px;
background-color: #23b7e5;
}
.i-checks input:checked + span .active {
display: inherit;
}
.i-checks input[type="radio"] + i,
.i-checks input[type="radio"] + i:before {
border-radius: 50%;
}
.i-checks input[disabled] + i,
fieldset[disabled] .i-checks input + i {
border-color: #dee5e7;
}
.i-checks input[disabled] + i:before,
fieldset[disabled] .i-checks input + i:before {
background-color: #dee5e7;
}
.i-checks > i {
position: relative;
display: inline-block;
width: 20px;
height: 20px;
margin-top: -2px;
margin-right: 4px;
margin-left: -20px;
line-height: 1;
vertical-align: middle;
background-color: #fff;
border: 1px solid #cfdadd;
}
.i-checks > i:before {
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background-color: transparent;
content: "";
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.i-checks > span {
margin-left: -20px;
}
.i-checks > span .active {
display: none;
}
.i-checks-sm input:checked + i:before {
top: 3px;
left: 3px;
width: 8px;
height: 8px;
}
.i-checks-sm > i {
width: 16px;
height: 16px;
margin-right: 6px;
margin-left: -18px;
}
.i-checks-lg input:checked + i:before {
top: 8px;
left: 8px;
width: 12px;
height: 12px;
}
.i-checks-lg > i {
width: 30px;
height: 30px;
}
.datepicker {
margin: 0 5px;
}
.datepicker .btn-default {
border-width: 0;
box-shadow: none;
}
.datepicker .btn[disabled] {
opacity: 0.4;
}
.datepicker .btn-info .text-info {
color: #fff !important;
}
/*Charts*/
.jqstooltip {
max-height: 12px;
padding: 5px 10px !important;
background-color: rgba(0, 0, 0, 0.8) !important;
border: solid 1px #000 !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.easyPieChart {
position: relative;
text-align: center;
}
.easyPieChart > div {
position: relative;
z-index: 1;
}
.easyPieChart > div .text {
position: absolute;
top: 60%;
width: 100%;
line-height: 1;
}
.easyPieChart > div img {
margin-top: -4px;
}
.easyPieChart canvas {
position: absolute;
top: 0;
left: 0;
z-index: 0;
}
#flotTip,
.flotTip {
z-index: 100;
padding: 4px 10px;
font-size: 12px;
color: #fff;
background-color: rgba(0, 0, 0, 0.8);
border: solid 1px #000 !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.legendColorBox > div {
margin: 5px;
border: none !important;
}
.legendColorBox > div > div {
border-radius: 10px;
}
.sortable-placeholder {
min-height: 50px;
margin-bottom: 5px;
list-style: none;
border: 1px dashed #CCC;
}
.panel .dataTables_wrapper {
padding-top: 10px;
}
.panel .dataTables_wrapper > .row {
margin: 0;
}
.panel .dataTables_wrapper > .row > .col-sm-12 {
padding: 0;
}
.st-sort-ascent:before {
content: '\25B2';
}
.st-sort-descent:before {
content: '\25BC';
}
.st-selected td {
background: #f0f9ec !important;
}
.chosen-choices,
.chosen-single,
.bootstrap-tagsinput {
border-color: #cfdadd !important;
border-radius: 2px !important;
}
.bootstrap-tagsinput {
padding: 5px 12px !important;
}
.item {
position: relative;
}
.item .top {
position: absolute;
top: 0;
left: 0;
}
.item .bottom {
position: absolute;
bottom: 0;
left: 0;
}
.item .center {
position: absolute;
top: 50%;
}
.item-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
}
.item-overlay.active,
.item:hover .item-overlay {
display: block;
}
.form-validation .form-control.ng-dirty.ng-invalid {
border-color: #f05050;
}
.form-validation .form-control.ng-dirty.ng-valid,
.form-validation .form-control.ng-dirty.ng-valid:focus {
border-color: #27c24c;
}
.form-validation .i-checks .ng-invalid.ng-dirty + i {
border-color: #f05050;
}
.ng-animate .bg-auto:before {
display: none;
}
[ui-view].ng-leave {
display: none;
}
[ui-view].ng-leave.smooth {
display: block;
}
.smooth.ng-animate {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}
.fade-in-right-big.ng-enter {
-webkit-animation: fadeInRightBig 0.5s;
animation: fadeInRightBig 0.5s;
}
.fade-in-right-big.ng-leave {
-webkit-animation: fadeOutLeftBig 0.5s;
animation: fadeOutLeftBig 0.5s;
}
.fade-in-left-big.ng-enter {
-webkit-animation: fadeInLeftBig 0.5s;
animation: fadeInLeftBig 0.5s;
}
.fade-in-left-big.ng-leave {
-webkit-animation: fadeOutRightBig 0.5s;
animation: fadeOutRightBig 0.5s;
}
.fade-in-up-big.ng-enter {
-webkit-animation: fadeInUpBig 0.5s;
animation: fadeInUpBig 0.5s;
}
.fade-in-up-big.ng-leave {
-webkit-animation: fadeOutUpBig 0.5s;
animation: fadeOutUpBig 0.5s;
}
.fade-in-down-big.ng-enter {
-webkit-animation: fadeInDownBig 0.5s;
animation: fadeInDownBig 0.5s;
}
.fade-in-down-big.ng-leave {
-webkit-animation: fadeOutDownBig 0.5s;
animation: fadeOutDownBig 0.5s;
}
.fade-in.ng-enter {
-webkit-animation: fadeIn 0.5s;
animation: fadeIn 0.5s;
}
.fade-in.ng-leave {
-webkit-animation: fadeOut 0.5s;
animation: fadeOut 0.5s;
}
.fade-in-right.ng-enter {
-webkit-animation: fadeInRight 0.5s;
animation: fadeInRight 0.5s;
}
.fade-in-right.ng-leave {
-webkit-animation: fadeOutLeft 0.5s;
animation: fadeOutLeft 0.5s;
}
.fade-in-left.ng-enter {
-webkit-animation: fadeInLeft 0.5s;
animation: fadeInLeft 0.5s;
}
.fade-in-left.ng-leave {
-webkit-animation: fadeOutRight 0.5s;
animation: fadeOutRight 0.5s;
}
.fade-in-up.ng-enter {
-webkit-animation: fadeInUp 0.5s;
animation: fadeInUp 0.5s;
}
.fade-in-up.ng-leave {
-webkit-animation: fadeOutUp 0.5s;
animation: fadeOutUp 0.5s;
}
.fade-in-down.ng-enter {
-webkit-animation: fadeInDown 0.5s;
animation: fadeInDown 0.5s;
}
.fade-in-down.ng-leave {
-webkit-animation: fadeOutDown 0.5s;
animation: fadeOutDown 0.5s;
}
.bg-gd {
background-image: -webkit-gradient(linear, left 0, left 100%, from(rgba(40, 50, 60, 0)), to(rgba(40, 50, 60, 0.075)));
background-image: -webkit-linear-gradient(top, rgba(40, 50, 60, 0), 0, rgba(40, 50, 60, 0.075), 100%);
background-image: -moz-linear-gradient(top, rgba(40, 50, 60, 0) 0, rgba(40, 50, 60, 0.075) 100%);
background-image: linear-gradient(to bottom, rgba(40, 50, 60, 0) 0, rgba(40, 50, 60, 0.075) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0028323c', endColorstr='#1328323c', GradientType=0);
filter: none;
}
.bg-gd-dk {
background-image: -webkit-gradient(linear, left 10%, left 100%, from(rgba(40, 50, 60, 0)), to(rgba(40, 50, 60, 0.5)));
background-image: -webkit-linear-gradient(top, rgba(40, 50, 60, 0), 10%, rgba(40, 50, 60, 0.5), 100%);
background-image: -moz-linear-gradient(top, rgba(40, 50, 60, 0) 10%, rgba(40, 50, 60, 0.5) 100%);
background-image: linear-gradient(to bottom, rgba(40, 50, 60, 0) 10%, rgba(40, 50, 60, 0.5) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0028323c', endColorstr='#8028323c', GradientType=0);
filter: none;
}
.bg-light {
color: #58666e;
background-color: #edf1f2;
}
.bg-light.lt,
.bg-light .lt {
background-color: #f3f5f6;
}
.bg-light.lter,
.bg-light .lter {
background-color: #f6f8f8;
}
.bg-light.dk,
.bg-light .dk {
background-color: #e4eaec;
}
.bg-light.dker,
.bg-light .dker {
background-color: #dde6e9;
}
.bg-light.bg,
.bg-light .bg {
background-color: #edf1f2;
}
.bg-dark {
color: #a6a8b1;
background-color: #3a3f51;
}
.bg-dark.lt,
.bg-dark .lt {
background-color: #474c5e;
}
.bg-dark.lter,
.bg-dark .lter {
background-color: #54596a;
}
.bg-dark.dk,
.bg-dark .dk {
background-color: #2e3344;
}
.bg-dark.dker,
.bg-dark .dker {
background-color: #232735;
}
.bg-dark.bg,
.bg-dark .bg {
background-color: #3a3f51;
}
.bg-dark a {
color: #c1c3c9;
}
.bg-dark a:hover {
color: #ffffff;
}
.bg-dark a.list-group-item:hover,
.bg-dark a.list-group-item:focus {
background-color: inherit;
}
.bg-dark .nav > li:hover > a,
.bg-dark .nav > li:focus > a,
.bg-dark .nav > li.active > a {
color: #ffffff;
background-color: #2e3344;
}
.bg-dark .nav > li > a {
color: #b4b6bd;
}
.bg-dark .nav > li > a:hover,
.bg-dark .nav > li > a:focus {
background-color: #32374a;
}
.bg-dark .nav .open > a {
background-color: #2e3344;
}
.bg-dark .caret {
border-top-color: #a6a8b1;
border-bottom-color: #a6a8b1;
}
.bg-dark.navbar .nav > li.active > a {
color: #ffffff;
background-color: #2e3344;
}
.bg-dark .open > a,
.bg-dark .open > a:hover,
.bg-dark .open > a:focus {
color: #ffffff;
}
.bg-dark .text-muted {
color: #8b8e99 !important;
}
.bg-dark .text-lt {
color: #eaebed !important;
}
.bg-dark.auto .list-group-item,
.bg-dark .auto .list-group-item {
background-color: transparent;
border-color: #2f3342 !important;
}
.bg-dark.auto .list-group-item:hover,
.bg-dark .auto .list-group-item:hover,
.bg-dark.auto .list-group-item:focus,
.bg-dark .auto .list-group-item:focus,
.bg-dark.auto .list-group-item:active,
.bg-dark .auto .list-group-item:active,
.bg-dark.auto .list-group-item.active,
.bg-dark .auto .list-group-item.active {
background-color: #2e3344 !important;
}
.bg-black {
color: #7793a7;
background-color: #1c2b36;
}
.bg-black.lt,
.bg-black .lt {
background-color: #263845;
}
.bg-black.lter,
.bg-black .lter {
background-color: #314554;
}
.bg-black.dk,
.bg-black .dk {
background-color: #131e26;
}
.bg-black.dker,
.bg-black .dker {
background-color: #0a1015;
}
.bg-black.bg,
.bg-black .bg {
background-color: #1c2b36;
}
.bg-black a {
color: #96abbb;
}
.bg-black a:hover {
color: #ffffff;
}
.bg-black a.list-group-item:hover,
.bg-black a.list-group-item:focus {
background-color: inherit;
}
.bg-black .nav > li:hover > a,
.bg-black .nav > li:focus > a,
.bg-black .nav > li.active > a {
color: #ffffff;
background-color: #131e26;
}
.bg-black .nav > li > a {
color: #869fb1;
}
.bg-black .nav > li > a:hover,
.bg-black .nav > li > a:focus {
background-color: #16232d;
}
.bg-black .nav .open > a {
background-color: #131e26;
}
.bg-black .caret {
border-top-color: #7793a7;
border-bottom-color: #7793a7;
}
.bg-black.navbar .nav > li.active > a {
color: #ffffff;
background-color: #131e26;
}
.bg-black .open > a,
.bg-black .open > a:hover,
.bg-black .open > a:focus {
color: #ffffff;
}
.bg-black .text-muted {
color: #5c798f !important;
}
.bg-black .text-lt {
color: #c4d0d9 !important;
}
.bg-black.auto .list-group-item,
.bg-black .auto .list-group-item {
background-color: transparent;
border-color: #131e25 !important;
}
.bg-black.auto .list-group-item:hover,
.bg-black .auto .list-group-item:hover,
.bg-black.auto .list-group-item:focus,
.bg-black .auto .list-group-item:focus,
.bg-black.auto .list-group-item:active,
.bg-black .auto .list-group-item:active,
.bg-black.auto .list-group-item.active,
.bg-black .auto .list-group-item.active {
background-color: #131e26 !important;
}
.bg-primary {
color: #f4f3f9;
background-color: #7266ba;
}
.bg-primary.lt,
.bg-primary .lt {
background-color: #847abf;
}
.bg-primary.lter,
.bg-primary .lter {
background-color: #958dc6;
}
.bg-primary.dk,
.bg-primary .dk {
background-color: #6051b5;
}
.bg-primary.dker,
.bg-primary .dker {
background-color: #5244a9;
}
.bg-primary.bg,
.bg-primary .bg {
background-color: #7266ba;
}
.bg-primary a {
color: #ffffff;
}
.bg-primary a:hover {
color: #ffffff;
}
.bg-primary a.list-group-item:hover,
.bg-primary a.list-group-item:focus {
background-color: inherit;
}
.bg-primary .nav > li:hover > a,
.bg-primary .nav > li:focus > a,
.bg-primary .nav > li.active > a {
color: #ffffff;
background-color: #6051b5;
}
.bg-primary .nav > li > a {
color: #f2f2f2;
}
.bg-primary .nav > li > a:hover,
.bg-primary .nav > li > a:focus {
background-color: #6658b8;
}
.bg-primary .nav .open > a {
background-color: #6051b5;
}
.bg-primary .caret {
border-top-color: #f4f3f9;
border-bottom-color: #f4f3f9;
}
.bg-primary.navbar .nav > li.active > a {
color: #ffffff;
background-color: #6051b5;
}
.bg-primary .open > a,
.bg-primary .open > a:hover,
.bg-primary .open > a:focus {
color: #ffffff;
}
.bg-primary .text-muted {
color: #d6d3e6 !important;
}
.bg-primary .text-lt {
color: #ffffff !important;
}
.bg-primary.auto .list-group-item,
.bg-primary .auto .list-group-item {
background-color: transparent;
border-color: #6254b2 !important;
}
.bg-primary.auto .list-group-item:hover,
.bg-primary .auto .list-group-item:hover,
.bg-primary.auto .list-group-item:focus,
.bg-primary .auto .list-group-item:focus,
.bg-primary.auto .list-group-item:active,
.bg-primary .auto .list-group-item:active,
.bg-primary.auto .list-group-item.active,
.bg-primary .auto .list-group-item.active {
background-color: #6051b5 !important;
}
.bg-success {
color: #c6efd0;
background-color: #27c24c;
}
.bg-success.lt,
.bg-success .lt {
background-color: #31d257;
}
.bg-success.lter,
.bg-success .lter {
background-color: #48d46a;
}
.bg-success.dk,
.bg-success .dk {
background-color: #20af42;
}
.bg-success.dker,
.bg-success .dker {
background-color: #1a9c39;
}
.bg-success.bg,
.bg-success .bg {
background-color: #27c24c;
}
.bg-success a {
color: #eefaf1;
}
.bg-success a:hover {
color: #ffffff;
}
.bg-success a.list-group-item:hover,
.bg-success a.list-group-item:focus {
background-color: inherit;
}
.bg-success .nav > li:hover > a,
.bg-success .nav > li:focus > a,
.bg-success .nav > li.active > a {
color: #ffffff;
background-color: #20af42;
}
.bg-success .nav > li > a {
color: #daf5e0;
}
.bg-success .nav > li > a:hover,
.bg-success .nav > li > a:focus {
background-color: #22b846;
}
.bg-success .nav .open > a {
background-color: #20af42;
}
.bg-success .caret {
border-top-color: #c6efd0;
border-bottom-color: #c6efd0;
}
.bg-success.navbar .nav > li.active > a {
color: #ffffff;
background-color: #20af42;
}
.bg-success .open > a,
.bg-success .open > a:hover,
.bg-success .open > a:focus {
color: #ffffff;
}
.bg-success .text-muted {
color: #9ee4af !important;
}
.bg-success .text-lt {
color: #ffffff !important;
}
.bg-success.auto .list-group-item,
.bg-success .auto .list-group-item {
background-color: transparent;
border-color: #23ad44 !important;
}
.bg-success.auto .list-group-item:hover,
.bg-success .auto .list-group-item:hover,
.bg-success.auto .list-group-item:focus,
.bg-success .auto .list-group-item:focus,
.bg-success.auto .list-group-item:active,
.bg-success .auto .list-group-item:active,
.bg-success.auto .list-group-item.active,
.bg-success .auto .list-group-item.active {
background-color: #20af42 !important;
}
.bg-info {
color: #dcf2f8;
background-color: #23b7e5;
}
.bg-info.lt,
.bg-info .lt {
background-color: #3dbde5;
}
.bg-info.lter,
.bg-info .lter {
background-color: #55c3e6;
}
.bg-info.dk,
.bg-info .dk {
background-color: #ff6600;
}
.bg-info.dker,
.bg-info .dker {
background-color: #1199c4;
}
.bg-info.bg,
.bg-info .bg {
background-color: #23b7e5;
}
.bg-info a {
color: #ffffff;
}
.bg-info a:hover {
color: #ffffff;
}
.bg-info a.list-group-item:hover,
.bg-info a.list-group-item:focus {
background-color: inherit;
}
.bg-info .nav > li:hover > a,
.bg-info .nav > li:focus > a,
.bg-info .nav > li.active > a {
color: #ffffff;
background-color: #ff6600;
}
.bg-info .nav > li > a {
color: #f2f2f2;
}
.bg-info .nav > li > a:hover,
.bg-info .nav > li > a:focus {
background-color: #17b2e2;
}
.bg-info .nav .open > a {
background-color: #16aad8;
}
.bg-info .caret {
border-top-color: #dcf2f8;
border-bottom-color: #dcf2f8;
}
.bg-info.navbar .nav > li.active > a {
color: #ffffff;
background-color: #16aad8;
}
.bg-info .open > a,
.bg-info .open > a:hover,
.bg-info .open > a:focus {
color: #ffffff;
}
.bg-info .text-muted {
color: #b0e1f1 !important;
}
.bg-info .text-lt {
color: #ffffff !important;
}
.bg-info.auto .list-group-item,
.bg-info .auto .list-group-item {
background-color: transparent;
border-color: #19a9d5 !important;
}
.bg-info.auto .list-group-item:hover,
.bg-info .auto .list-group-item:hover,
.bg-info.auto .list-group-item:focus,
.bg-info .auto .list-group-item:focus,
.bg-info.auto .list-group-item:active,
.bg-info .auto .list-group-item:active,
.bg-info.auto .list-group-item.active,
.bg-info .auto .list-group-item.active {
background-color: #16aad8 !important;
}
.bg-warning {
color: #fffefa;
background-color: #fad733;
}
.bg-warning.lt,
.bg-warning .lt {
background-color: #f8da4e;
}
.bg-warning.lter,
.bg-warning .lter {
background-color: #f7de69;
}
.bg-warning.dk,
.bg-warning .dk {
background-color: #fcd417;
}
.bg-warning.dker,
.bg-warning .dker {
background-color: #face00;
}
.bg-warning.bg,
.bg-warning .bg {
background-color: #fad733;
}
.bg-warning a {
color: #ffffff;
}
.bg-warning a:hover {
color: #ffffff;
}
.bg-warning a.list-group-item:hover,
.bg-warning a.list-group-item:focus {
background-color: inherit;
}
.bg-warning .nav > li:hover > a,
.bg-warning .nav > li:focus > a,
.bg-warning .nav > li.active > a {
color: #ffffff;
background-color: #fcd417;
}
.bg-warning .nav > li > a {
color: #f2f2f2;
}
.bg-warning .nav > li > a:hover,
.bg-warning .nav > li > a:focus {
background-color: #fcd621;
}
.bg-warning .nav .open > a {
background-color: #fcd417;
}
.bg-warning .caret {
border-top-color: #fffefa;
border-bottom-color: #fffefa;
}
.bg-warning.navbar .nav > li.active > a {
color: #ffffff;
background-color: #fcd417;
}
.bg-warning .open > a,
.bg-warning .open > a:hover,
.bg-warning .open > a:focus {
color: #ffffff;
}
.bg-warning .text-muted {
color: #fbf2cb !important;
}
.bg-warning .text-lt {
color: #ffffff !important;
}
.bg-warning.auto .list-group-item,
.bg-warning .auto .list-group-item {
background-color: transparent;
border-color: #f9d21a !important;
}
.bg-warning.auto .list-group-item:hover,
.bg-warning .auto .list-group-item:hover,
.bg-warning.auto .list-group-item:focus,
.bg-warning .auto .list-group-item:focus,
.bg-warning.auto .list-group-item:active,
.bg-warning .auto .list-group-item:active,
.bg-warning.auto .list-group-item.active,
.bg-warning .auto .list-group-item.active {
background-color: #fcd417 !important;
}
.bg-danger {
color: #ffffff;
background-color: #f05050;
}
.bg-danger.lt,
.bg-danger .lt {
background-color: #f06a6a;
}
.bg-danger.lter,
.bg-danger .lter {
background-color: #f18282;
}
.bg-danger.dk,
.bg-danger .dk {
background-color: #f13636;
}
.bg-danger.dker,
.bg-danger .dker {
background-color: #f21b1b;
}
.bg-danger.bg,
.bg-danger .bg {
background-color: #f05050;
}
.bg-danger a {
color: #ffffff;
}
.bg-danger a:hover {
color: #ffffff;
}
.bg-danger a.list-group-item:hover,
.bg-danger a.list-group-item:focus {
background-color: inherit;
}
.bg-danger .nav > li:hover > a,
.bg-danger .nav > li:focus > a,
.bg-danger .nav > li.active > a {
color: #ffffff;
background-color: #f13636;
}
.bg-danger .nav > li > a {
color: #f2f2f2;
}
.bg-danger .nav > li > a:hover,
.bg-danger .nav > li > a:focus {
background-color: #f13f3f;
}
.bg-danger .nav .open > a {
background-color: #f13636;
}
.bg-danger .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
}
.bg-danger.navbar .nav > li.active > a {
color: #ffffff;
background-color: #f13636;
}
.bg-danger .open > a,
.bg-danger .open > a:hover,
.bg-danger .open > a:focus {
color: #ffffff;
}
.bg-danger .text-muted {
color: #e6e6e6 !important;
}
.bg-danger .text-lt {
color: #ffffff !important;
}
.bg-danger.auto .list-group-item,
.bg-danger .auto .list-group-item {
background-color: transparent;
border-color: #ee3939 !important;
}
.bg-danger.auto .list-group-item:hover,
.bg-danger .auto .list-group-item:hover,
.bg-danger.auto .list-group-item:focus,
.bg-danger .auto .list-group-item:focus,
.bg-danger.auto .list-group-item:active,
.bg-danger .auto .list-group-item:active,
.bg-danger.auto .list-group-item.active,
.bg-danger .auto .list-group-item.active {
background-color: #f13636 !important;
}
.bg-white {
color: #58666e;
background-color: #fff !important;
}
.bg-white a {
color: inherit;
}
.bg-white a:hover {
color: inherit;
}
.bg-white .text-muted {
color: #98a6ad !important;
}
.bg-white .lt,
.bg-white .lter,
.bg-white .dk,
.bg-white .dker {
background-color: #fff;
}
.bg-white-only {
background-color: #fff;
}
.bg-white-opacity {
background-color: rgba(255, 255, 255, 0.5);
}
.bg-black-opacity {
background-color: rgba(32, 43, 54, 0.5);
}
a.bg-light:hover {
color: inherit;
}
a.bg-primary:hover {
background-color: #6254b2;
}
a.text-primary:hover {
color: #6254b2;
}
.text-primary {
color: #7266ba;
}
.text-primary-lt {
color: #8278c2;
}
.text-primary-lter {
color: #9289ca;
}
.text-primary-dk {
color: #6254b2;
}
.text-primary-dker {
color: #564aa3;
}
a.bg-info:hover {
background-color: #19a9d5;
}
a.text-info:hover {
color: #19a9d5;
}
.text-info {
color: #23b7e5;
}
.text-info-lt {
color: #3abee8;
}
.text-info-lter {
color: #51c6ea;
}
.text-info-dk {
color: #19a9d5;
}
.text-info-dker {
color: #1797be;
}
a.bg-success:hover {
background-color: #23ad44;
}
a.text-success:hover {
color: #23ad44;
}
.text-success {
color: #27c24c;
}
.text-success-lt {
color: #2ed556;
}
.text-success-lter {
color: #43d967;
}
.text-success-dk {
color: #23ad44;
}
.text-success-dker {
color: #1e983b;
}
a.bg-warning:hover {
background-color: #f9d21a;
}
a.text-warning:hover {
color: #f9d21a;
}
.text-warning {
color: #fad733;
}
.text-warning-lt {
color: #fbdc4c;
}
.text-warning-lter {
color: #fbe165;
}
.text-warning-dk {
color: #f9d21a;
}
.text-warning-dker {
color: #f4ca06;
}
a.bg-danger:hover {
background-color: #ee3939;
}
a.text-danger:hover {
color: #ee3939;
}
.text-danger {
color: #f05050;
}
.text-danger-lt {
color: #f26767;
}
.text-danger-lter {
color: #f47f7f;
}
.text-danger-dk {
color: #ee3939;
}
.text-danger-dker {
color: #ec2121;
}
a.bg-dark:hover {
background-color: #2f3342;
}
a.text-dark:hover {
color: #2f3342;
}
.text-dark {
color: #3a3f51;
}
.text-dark-lt {
color: #454b60;
}
.text-dark-lter {
color: #4f566f;
}
.text-dark-dk {
color: #2f3342;
}
.text-dark-dker {
color: #252833;
}
a.bg-#000000:hover {
background-color: #131e25;
}
a.text-#000000:hover {
color: #131e25;
}
.text-#000000 {
color: #1c2b36;
}
.text-#000000-lt {
color: #253847;
}
.text-#000000-lter {
color: #2d4658;
}
.text-#000000-dk {
color: #131e25;
}
.text-#000000-dker {
color: #0b1014;
}
.text-white {
color: #fff;
}
.text-black {
color: #000;
}
.text-muted {
color: #98a6ad;
}
.bg {
background-color: #f0f3f4;
}
.pos-rlt {
position: relative;
}
.pos-stc {
position: static !important;
}
.pos-abt {
position: absolute;
}
.pos-fix {
position: fixed;
}
.show {
visibility: visible;
}
.line {
width: 100%;
height: 2px;
margin: 10px 0;
overflow: hidden;
font-size: 0;
}
.line-xs {
margin: 0;
}
.line-lg {
margin-top: 15px;
margin-bottom: 15px;
}
.line-dashed {
background-color: transparent;
border-style: dashed !important;
border-width: 0;
}
.no-line {
border-width: 0;
}
.no-border,
.no-borders {
border-color: transparent;
border-width: 0;
}
.no-radius {
border-radius: 0;
}
.block {
display: block;
}
.block.hide {
display: none;
}
.inline {
display: inline-block !important;
}
.none {
display: none;
}
.pull-none {
float: none;
}
.rounded {
border-radius: 500px;
}
.clear {
display: block;
overflow: hidden;
}
.no-bg {
color: inherit;
background-color: transparent;
}
.no-select {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
}
.l-h {
line-height: 1.42857143;
}
.l-h-0x {
line-height: 0;
}
.l-h-1x {
line-height: 1.2;
}
.l-h-2x {
line-height: 2em;
}
.l-s-1x {
letter-spacing: 1;
}
.l-s-2x {
letter-spacing: 2;
}
.l-s-3x {
letter-spacing: 3;
}
.font-normal {
font-weight: normal;
}
.font-thin {
font-weight: 300;
}
.font-bold {
font-weight: 700;
}
.text-3x {
font-size: 3em;
}
.text-2x {
font-size: 2em;
}
.text-lg {
font-size: 18px;
}
.text-md {
font-size: 16px;
}
.text-base {
font-size: 14px;
}
.text-sm {
font-size: 13px;
}
.text-xs {
font-size: 12px;
}
.text-xxs {
text-indent: -9999px;
}
.text-ellipsis {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.text-u-c {
text-transform: uppercase;
}
.text-l-t {
text-decoration: line-through;
}
.text-u-l {
text-decoration: underline;
}
.text-active,
.active > .text,
.active > .auto .text {
display: none !important;
}
.active > .text-active,
.active > .auto .text-active {
display: inline-block !important;
}
.box-shadow-bottom {
box-shadow: 0 2px 0px #ececf1;
}
.box-shadow-panel {
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}
.box-shadow {
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
.box-shadow-lg {
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}
.text-shadow {
font-size: 170px;
text-shadow: 0 1px 0 #dee5e7, 0 2px 0 #fcfdfd, 0 5px 10px rgba(0, 0, 0, 0.125), 0 10px 20px rgba(0, 0, 0, 0.2);
}
.no-shadow {
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.wrapper-xs {
padding: 5px;
}
.wrapper-sm {
padding: 10px;
}
.wrapper {
padding: 15px;
}
.wrapper-md {
padding: 20px;
}
.wrapper-lg {
padding: 30px;
}
.wrapper-xl {
padding: 50px;
}
.padder-b-xs{
padding-bottom: 10px;
padding-top: 10px;
}
.padder-b-md{
padding-bottom: 15px;
padding-top: 15px;
}
.padder-lg {
padding-right: 30px;
padding-left: 30px;
}
.padder-sm{
padding-right: 15px;
padding-left: 15px;
}
.padder-md {
padding-right: 20px;
padding-left: 20px;
}
.padder-left-none{
padding-left: 0;
}
.padder {
padding-right: 15px;
padding-left: 15px;
}
.padder-v {
padding-top: 15px;
padding-bottom: 15px;
}
.padder-v-sm {
padding-top: 20px;
padding-bottom: 5px;
}
.no-padder {
padding: 0 !important;
}
.pull-in {
margin-right: -15px;
margin-left: -15px;
}
.pull-out {
margin: -10px -15px;
}
.b-t-b-none{
border-top: 0px solid #fff;
border-bottom: 0px solid #fff !important;
}
.b {
border: 1px solid rgba(0, 0, 0, 0.05);
}
.b-a {
border: 1px solid #dee5e7;
}
.b-t {
border-top: 1px solid #dee5e7;
}
.b-r {
border-right: 1px solid #dee5e7;
}
.b-b {
border-bottom: 1px solid #dee5e7 !important;
}
.b-b-danger-2x {
border-bottom: 2px solid #f05050;
}
.b-l {
border-left: 1px solid #b8bcce;
}
.b-light {
border-color: #edf1f2;
}
.b-dark {
border-color: #3a3f51;
}
.b-black {
border-color: #3a3f51;
}
.b-primary {
border-color: #7266ba;
}
.b-success {
border-color: #27c24c;
}
.b-info {
border-color: #23b7e5;
}
.b-warning {
border-color: #fad733;
}
.b-danger {
border-color: #f05050;
}
.b-white {
border-color: #ffffff;
}
.b-dashed {
border-style: dashed !important;
}
.b-l-light {
border-left-color: #edf1f2;
}
.b-l-dark {
border-left-color: #3a3f51;
}
.b-l-black {
border-left-color: #3a3f51;
}
.b-l-primary {
border-left-color: #7266ba;
}
.b-l-success {
border-left-color: #27c24c;
}
.b-l-info {
border-left-color: #23b7e5;
}
.b-l-warning {
border-left-color: #fad733;
}
.b-l-danger {
border-left-color: #f05050;
}
.b-l-white {
border-left-color: #ffffff;
}
.b-l-2x {
border-left-width: 2px;
}
.b-l-3x {
border-left-width: 3px;
}
.b-l-4x {
border-left-width: 4px;
}
.b-l-5x {
border-left-width: 5px;
}
.b-2x {
border-width: 2px;
}
.b-3x {
border-width: 3px;
}
.b-4x {
border-width: 4px;
}
.b-5x {
border-width: 5px;
}
.r-none{
border-top-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.r {
border-radius: 2px 2px 2px 2px;
}
.r-2x {
border-radius: 4px;
}
.r-3x {
border-radius: 6px;
}
.r-l {
border-radius: 2px 0 0 2px;
}
.r-r {
border-radius: 0 2px 2px 0;
}
.r-t {
border-radius: 2px 2px 0 0;
}
.r-b {
border-radius: 0 0 2px 2px;
}
.r-sm{
border-radius: 5px;
}
.r-b-sm {
border-radius: 0 0 5px 5px;
}
.m-xxs {
margin: 2px 4px;
}
.m-xs {
margin: 5px;
}
.m-sm {
margin: 10px;
}
.m {
margin: 15px;
}
.m-md {
margin: 20px;
}
.m-lg {
margin: 30px;
}
.m-xl {
margin: 50px;
}
.m-n {
margin: 0 !important;
}
.m-l-none {
margin-left: 0 !important;
}
.m-l-xs {
margin-left: 5px;
}
.m-l-sm {
margin-left: 10px;
}
.m-l {
margin-left: 15px;
}
.m-l-md {
margin-left: 20px;
}
.m-l-lg {
margin-left: 30px;
}
.m-l-xl {
margin-left: 40px;
}
.m-l-xxl {
margin-left: 50px;
}
.m-l-xxxl {
margin-left: 60px;
}
.m-l-very-large {
margin-left: 70px;
}
.m-l-n-xxs {
margin-left: -1px !important;
}
.m-l-n-xs {
margin-left: -5px !important;
}
.m-l-n-sm {
margin-left: -10px !important;
}
.m-l-n {
margin-left: -15px !important;
}
.m-l-n-md {
margin-left: -20px !important;
}
.m-l-n-lg {
margin-left: -30px !important;
}
.m-l-n-xl {
margin-left: -40px !important;
}
.m-l-n-xxl {
margin-left: -50px !important;
}
.m-t-none {
margin-top: 0 !important;
}
.m-t-xxs {
margin-top: 1px;
}
.m-t-xs {
margin-top: 5px;
}
.m-t-sm {
margin-top: 10px;
}
.m-t {
margin-top: 15px;
}
.m-t-md {
margin-top: 20px;
}
.m-t-lg {
margin-top: 30px;
}
.m-t-xl {
margin-top: 40px;
}
.m-t-xxl {
margin-top: 50px;
}
.m-t-n-xxs {
margin-top: -1px;
}
.m-t-n-xs {
margin-top: -5px;
}
.m-t-n-sm {
margin-top: -10px;
}
.m-t-n {
margin-top: -15px;
}
.m-t-n-md {
margin-top: -20px;
}
.m-t-n-lg {
margin-top: -30px;
}
.m-t-n-xl {
margin-top: -40px;
}
.m-t-n-xxl {
margin-top: -50px;
}
.m-r-none {
margin-right: 0 !important;
}
.m-r-xxs {
margin-right: 1px;
}
.m-r-xs {
margin-right: 5px;
}
.m-r-sm {
margin-right: 10px;
}
.m-r {
margin-right: 15px;
}
.m-r-md {
margin-right: 20px;
}
.m-r-lg {
margin-right: 30px;
}
.m-r-xl {
margin-right: 40px;
}
.m-r-xxl {
margin-right: 50px;
}
.m-r-n-xxs {
margin-right: -1px;
}
.m-r-n-xs {
margin-right: -5px;
}
.m-r-n-sm {
margin-right: -10px;
}
.m-r-n {
margin-right: -15px;
}
.m-r-n-md {
margin-right: -20px;
}
.m-r-n-lg {
margin-right: -30px;
}
.m-r-n-xl {
margin-right: -40px;
}
.m-r-n-xxl {
margin-right: -50px;
}
.m-b-none {
margin-bottom: 0 !important;
}
.m-b-xxs {
margin-bottom: 1px;
}
.m-b-xs {
margin-bottom: 5px;
}
.m-b-sm {
margin-bottom: 10px;
}
.m-b {
margin-bottom: 15px;
}
.m-b-md {
margin-bottom: 20px;
}
.m-b-lg {
margin-bottom: 30px;
}
.m-b-xl {
margin-bottom: 40px;
}
.m-b-xxl {
margin-bottom: 50px;
}
.m-b-n-xxs {
margin-bottom: -1px;
}
.m-b-n-xs {
margin-bottom: -5px;
}
.m-b-n-sm {
margin-bottom: -10px;
}
.m-b-n {
margin-bottom: -15px;
}
.m-b-n-md {
margin-bottom: -20px;
}
.m-b-n-lg {
margin-bottom: -30px;
}
.m-b-n-xl {
margin-bottom: -40px;
}
.m-b-n-xxl {
margin-bottom: -50px;
}
.avatar {
position: relative;
display: block;
white-space: nowrap;
border-radius: 500px;
}
.avatar img {
width: 100%;
border-radius: 500px;
border-style: solid;
}
.avatar i {
position: absolute;
top: 0;
left: 0;
width: 10px;
height: 10px;
margin: 2px;
border-style: solid;
border-width: 2px;
border-radius: 100%;
}
.avatar i.right {
right: 0;
left: auto;
}
.avatar i.bottom {
top: auto;
right: 0;
bottom: 0;
left: auto;
}
.avatar i.left {
top: auto;
bottom: 0;
}
.avatar i.on {
background-color: #27c24c;
}
.avatar i.off {
background-color: #98a6ad;
}
.avatar i.busy {
background-color: #f05050;
}
.avatar i.away {
background-color: #fad733;
}
.avatar.thumb-md i {
width: 12px;
height: 12px;
margin: 3px;
}
.avatar.thumb-sm i {
margin: 1px;
}
.avatar.thumb-xs i {
margin: 0;
}
.w-1x {
width: 1em;
}
.w-2x {
width: 2em;
}
.w-3x {
width: 3em;
}
.w-xxs {
width: 60px;
}
.w-xs {
width: 90px;
}
.w-sm {
width: 150px;
}
.w {
width: 200px;
}
.w-md {
width: 250px;
}
.w-lg {
width: 280px;
}
.w-xl {
width: 320px;
}
.w-xxl {
width: 360px;
}
.w-full {
width: 100%;
}
.w-auto {
width: auto;
}
.h-auto {
height: auto;
}
.h-full {
height: 100%;
}
.thumb-xl {
display: inline-block;
width: 128px;
}
.thumb-lg {
display: inline-block;
width: 96px;
}
.thumb-md {
display: inline-block;
width: 64px;
}
.thumb {
display: inline-block;
width: 50px;
}
.thumb-sm {
display: inline-block;
width: 40px;
}
.thumb-xs {
display: inline-block;
width: 34px;
}
.thumb-xxs {
display: inline-block;
width: 30px;
}
.thumb-wrapper {
padding: 2px;
border: 1px solid #dee5e7;
}
.thumb img,
.thumb-xs img,
.thumb-sm img,
.thumb-md img,
.thumb-lg img,
.thumb-btn img {
height: auto;
max-width: 100%;
vertical-align: middle;
}
.img-full {
width: 100%;
}
.img-full img {
width: 100%;
}
.scrollable {
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.scrollable.hover {
overflow-y: hidden !important;
}
.scrollable.hover:hover {
overflow: visible !important;
overflow-y: auto !important;
}
.smart .scrollable {
overflow-y: auto !important;
}
.scroll-x,
.scroll-y {
overflow: hidden;
-webkit-overflow-scrolling: touch;
}
.scroll-y {
overflow-y: auto;
}
.scroll-x {
overflow-x: auto;
}
.hover-action {
display: none;
}
.hover-rotate {
-webkit-transition: all 0.2s ease-in-out 0.1s;
transition: all 0.2s ease-in-out 0.1s;
}
.hover-anchor:hover > .hover-action,
.hover-anchor:focus > .hover-action,
.hover-anchor:active > .hover-action {
display: inherit;
}
.hover-anchor:hover > .hover-rotate,
.hover-anchor:focus > .hover-rotate,
.hover-anchor:active > .hover-rotate {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.backdrop {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
}
.backdrop.fade {
opacity: 0;
filter: alpha(opacity=0);
}
.backdrop.in {
opacity: 0.8;
filter: alpha(opacity=80);
}
/*desktop*/
@media screen and (min-width: 992px) {
.col-lg-2-4 {
float: left;
width: 20.000%;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm.show {
display: inherit !important;
}
.no-m-sm {
margin: 0 !important;
}
}
/*phone*/
@media (max-width: 767px) {
.w-auto-xs {
width: auto;
}
.shift {
display: none !important;
}
.shift.in {
display: block !important;
}
.row-2 [class*="col"] {
float: left;
width: 50%;
}
.row-2 .col-0 {
clear: none;
}
.row-2 li:nth-child(odd) {
margin-left: 0;
clear: left;
}
.text-center-xs {
text-align: center;
}
.text-left-xs {
text-align: left;
}
.text-right-xs {
text-align: right;
}
.no-border-xs {
border-width: 0;
}
.pull-none-xs {
float: none !important;
}
.pull-right-xs {
float: right !important;
}
.pull-left-xs {
float: left !important;
}
.dropdown-menu.pull-none-xs {
left: 0;
}
.hidden-xs.show {
display: inherit !important;
}
.wrapper-lg,
.wrapper-md {
padding: 15px;
}
.padder-lg,
.padder-md {
padding-right: 15px;
padding-left: 15px;
}
.no-m-xs {
margin: 0 !important;
}
}
.butterbar {
position: relative;
height: 3px;
margin-bottom: -3px;
}
.butterbar .bar {
position: absolute;
width: 100%;
height: 0;
text-indent: -9999px;
background-color: #23b7e5;
}
.butterbar .bar:before {
position: absolute;
right: 50%;
left: 50%;
height: 3px;
background-color: inherit;
content: "";
}
.butterbar.active {
-webkit-animation: changebar 2.25s infinite 0.75s;
-moz-animation: changebar 2.25s infinite 0.75s;
animation: changebar 2.25s infinite 0.75s;
}
.butterbar.active .bar {
-webkit-animation: changebar 2.25s infinite;
-moz-animation: changebar 2.25s infinite;
animation: changebar 2.25s infinite;
}
.butterbar.active .bar:before {
-webkit-animation: movingbar 0.75s infinite;
-moz-animation: movingbar 0.75s infinite;
animation: movingbar 0.75s infinite;
}
/* Moving bar */
@-webkit-keyframes movingbar {
0% {
right: 50%;
left: 50%;
}
99.9% {
right: 0;
left: 0;
}
100% {
right: 50%;
left: 50%;
}
}
@-moz-keyframes movingbar {
0% {
right: 50%;
left: 50%;
}
99.9% {
right: 0;
left: 0;
}
100% {
right: 50%;
left: 50%;
}
}
@keyframes movingbar {
0% {
right: 50%;
left: 50%;
}
99.9% {
right: 0;
left: 0;
}
100% {
right: 50%;
left: 50%;
}
}
/* change bar */
@-webkit-keyframes changebar {
0% {
background-color: #23b7e5;
}
33.3% {
background-color: #23b7e5;
}
33.33% {
background-color: #fad733;
}
66.6% {
background-color: #fad733;
}
66.66% {
background-color: #7266ba;
}
99.9% {
background-color: #7266ba;
}
}
@-moz-keyframes changebar {
0% {
background-color: #23b7e5;
}
33.3% {
background-color: #23b7e5;
}
33.33% {
background-color: #fad733;
}
66.6% {
background-color: #fad733;
}
66.66% {
background-color: #7266ba;
}
99.9% {
background-color: #7266ba;
}
}
@keyframes changebar {
0% {
background-color: #23b7e5;
}
33.3% {
background-color: #23b7e5;
}
33.33% {
background-color: #fad733;
}
66.6% {
background-color: #fad733;
}
66.66% {
background-color: #7266ba;
}
99.9% {
background-color: #7266ba;
}
}
.bg-info {
color: #e5e6ec;
background-color: #ff6600;
}
.bg-danger {
color: #ffffff;
background-color: #ed1c24;
}
.bg-success {
color: #c6efd0;
background-color: #8dc80e;
}
.bg-primary{
color: #f4f3f9;
background-color: #7a569c;
}
.bg-grey{
background: #e5e5ec;
}
.bg-dark-grey{
background: #555b70;
}
.bg-grey-breadcrumb{
background: #e5e5ec;
}
.bg-dark{
background-color: #26272e;
}
.bg-blue{
background-color: #ff6600;
}
.text-success{
color: #8dc80e;
}
.text-purple{
color: #8560a8;
}
.text-warning{
color: #ff7e00;
}
.text-info{
color: #00b0ff !important;
}
.text-grey{
color: #555b70;
}
.text-heading{
color: #42465e;
}
.text-light-grey{
color: #b8bcce;
}
.text-dark-grey{
color: #5f6579;
}
.icon-grey{
color: #545a6f;
}
.b-grey{
border-color: #b8bcce;
}
.bg-light{
background-color: #f4f5f5;
}
.bg-dark-grey{
background-color: #d9e0ea;
}
.text-muted {
color: #b8bcce;
}
/* Datatable Pagination */
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
background-color: #555b70;
border-color: #555b70;
}
.pagination > li > a, .pagination > li > span{
color: #555b70;
}
div.dataTables_info{
color: #b8bcce;
}
/* Nav */
.bg-info .nav > li > a{
color: #ffffff;
}
.bg-info .nav .open > a{
background: transparent;
}
.bg-info .nav > li > a:hover, .bg-info .nav > li > a:focus{
/*background: none !important;*/
}
.bg-info .nav > li > a:hover, .bg-info .nav > li > a:focus{
background: transparent;
}
.bg-dark .nav > li > a{
color: #5f6579;
}
.profile-header:hover{
background-color: #01a0e7 !important;
}
.bg-dark.dk, .bg-dark .dk{
background-color: #222329;
}
.dg{
background-color: #2c2d34;
}
.dk{
background-color: #2c2d34;
}
ul{
list-style:none;
}
.panel {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: none;
-webkit-box-shadow: 0 2px 3px #dadada;
-moz-box-shadow: 0 2px 3px #dadada;
box-shadow: 0 2px 3px #dadada;
margin-bottom: 30px;
}
.panel-heading {
padding: 20px 25px;
color: #42465e !important;
background-color: #fbfbfb !important;
-webkit-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
border-bottom: 1px solid #e5e6ec;
}
.panel-body {
padding: 25px;
}
.panel-heading-white {
padding: 15px 20px;
color: #555b70 !important;
background-color: #ffffff !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-bottom: 1px solid #e5e6ec;
border-top: 1px solid #e5e6ec;
}
.panel-heading-white p, .panel-body p{
line-height: 20px;
}
.panel-image{
background-color: #ffffff;
padding: 10px;
border: 1px solid #e5e6ec;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.panel-info {
padding: 20px 0 10px 0;
margin-top: 20px;
border-top: 1px solid #e5e6ec;
}
.panel-info span {
margin-right: 20px;
}
.panel-info span i {
margin-right: 8px;
}
.panel-info span small {
font-size: 12px;
color: inherit;
}
.block {
display: block;
}
.inline {
display: inline-block;
}
.border-left {
border-left: 1px solid #e5e6ec;
}
.content-dashboard {
width: calc(100% - 210px);
margin-top: -3px;
}
.content-body {
float: left;
width: 100%;
padding-bottom: 50px;
background-color: #f1f1f1;
-webkit-box-shadow: inset 2px -6px 6px rgba(7, 8, 8, 0.13);
-moz-box-shadow: inset 2px -6px 6px rgba(7, 8, 8, 0.13);
box-shadow: inset 2px -6px 6px rgba(7, 8, 8, 0.13);
}
.wrapper-content {
padding: 50px 70px;
}
.wrapper {
padding: 30px 15px;
}
.wrapper20-15 {
padding: 20px 15px;
}
.wrapper20 {
padding: 20px;
}
.wrapper-top-bottom {
padding-top: 30px;
padding-bottom: 30px;
padding-right: 0;
padding-left: 0;
}
.pb-zero {
padding-bottom: 0 !important;
}
.mb20 {
margin-bottom: 20px;
}
.mb15 {
margin-bottom: 15px;
}
.mb10 {
margin-bottom: 10px;
}
.bg-light {
/*background-color: #d9e0ea;*/
background-color: #f4f5f5;
}
.grid-item {
margin-bottom: 10px;
}
.accordion h3 a {
font-size: 14px;
font-weight: 600;
color: #42465e;
width: 100%;
display: block;
}
.accordion h3 a:after {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
top: 3px;
content: "\e259";
color: #e0e0e0;
font-size: 12px;
float: right;
}
.accordion h3 a i {
font-size: 16px;
margin-right: 15px;
color: #e0e0e0;
}
.accordion ul {
padding-left: 30px;
display: none;
}
.accordion ul li {
padding: 12px 0;
}
.accordion ul li a {
color: #9099a5;
font-size: 14px;
font-weight: normal;
}
.accordion ul li a:hover {
color: #ff7e00;
}
.accordion ul li.active a:hover {
color: #ff7e00;
}
.accordion.active h3 a:after {
content: "\e260";
}
.accordion.active ul {
display: block;
}
.full-width {
width: 100%;
}
.sparkline-info {
margin-top: 30px;
padding-left: 0;
}
.sparkline-info li {
font-size: 12px;
}
.sparkline-info li i {
margin-right: 5px;
}
.easyPieChart {
position: relative;
text-align: center;
}
.easyPieChart > div {
position: relative;
z-index: 1;
}
.easyPieChart > div .text {
position: absolute;
top: 60%;
width: 100%;
line-height: 1;
font-size: 12px;
}
.easyPieChart > div img {
margin-top: -4px;
}
.easyPieChart canvas {
position: absolute;
top: 0;
left: 0;
z-index: 0;
}
#flotTip,
.flotTip,
.jqstooltip {
z-index: 100;
padding: 4px 10px !important;
font-size: 12px !important;
color: #555b70 !important;
background-color: #ffffff !important;
border: solid 1px #b8bcce !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
width: auto !important;
height: auto !important;
}
.jqsfield {
font-size: 12px !important;
color: #555b70 !important;
}
.font-light {
font-weight: 300 !important;
}
.font-regular {
font-weight: normal !important;
}
.font-semibold {
font-weight: 600 !important;
}
.font-bold {
font-weight: 700 !important;
}
.text8{
font-size: 8px;
}
.text10{
font-size: 10px;
}
.text12{
font-size: 12px;
}
.text13{
font-size: 13px;
}
.text14{
font-size: 14px;
}
.text15{
font-size: 15px;
}
.text16{
font-size: 16px;
}
.text17{
font-size: 17px;
}
.text18{
font-size: 18px;
}
.text19{
font-size: 19px;
}
.text20{
font-size: 20px;
}
.text21{
font-size: 21px;
}
.text22{
font-size: 22px;
}
.bg-dark-ov-30{
background-color: rgba(0,0,0,.3);
}
.bg-dark-ov-40{
background-color: rgba(0,0,0,.4);
}
.bg-dark-ov-50{
background-color: rgba(0,0,0,.5);
}
.bg-dark-ov-60{
background-color: rgba(0,0,0,.6);
}
.bg-dark-ov-70{
background-color: rgba(0,0,0,.7);
}
.bg-dark-ov-80{
background-color: rgba(0,0,0,.8);
}
.bg-dark-ov-90{
background-color: rgba(0,0,0,.9);
}
.bg-dark-ov-100{
background-color: rgba(0,0,0,1);
}
.logo{
font-family: Lobster;
font-size: 16t;
}
/* Breadcrumb */
.breadcrumb{
margin-top: 4px;
padding: 4px 15px;
border-radius: 0;
}
.breadcrumb a.btn{
padding-right: 10px;
}
.breadcrumb > li,.breadcrumb > li + li:before {
padding: 0;
content: "";
}
.breadcrumb > li > i{
padding: 0 5px;
color: #ccc;
}
/* Datatable */
table.dataTable thead > tr > th{
padding-left: 25px !important;
}
/* Table */
.table > thead > tr > th,.table > tbody > tr > th, .table > tfoot > tr > th, .table > tbody > tr > td, .table > tfoot > tr > td{
padding: 8px 15px 8px 25px;
}
/* Navbar */
.navbar-btn{
margin-top: 18px;
margin-bottom: 18px;
}
.navbar-nav > li > a{
padding-top: 27px;
padding-bottom: 26px;
font-size: 12px;
}
.navbar .navbar-form-sm {
margin-top: 22px;
margin-bottom: 22px;
}
.navbar-brand{
line-height: 73px;
}
.app-header-fixed{
padding-top: 70px;
}
.bg-info .nav > li > a{
font-weight: 600;
}
.bg-info .nav > li > a:hover{
background-color: #cc5200 !important;
}
.app-aside-folded .navbar-brand img.small-logo{
display: inline !important;
}
.app-aside-folded .navbar-brand img.large-logo{
display: none;
}
.dropdown-menu .divider{
margin: 0;
}
.dropdown-menu{
-moz-box-shadow: 0 2px 3px #dadada; /* drop shadow */
-webkit-box-shadow: 0 2px 3px #dadada; /* drop shadow */
box-shadow: 0 2px 3px #dadada; /* drop shadow */
border:none;
border-radius: 5px;
padding: 0;
min-width: 170px;
margin-top: 1px !important;
}
.dropdown-menu > li > a{
font-size: 12px;
line-height: 40px;
padding: 0px 20px;
color: #555b70;
}
.dropdown-menu > li:last-child > a{
border-radius: 0 0 5px 5px;
}
.dropdown-menu > li > a > .badge,.dropdown-menu > li > a > .label{
margin-top: 10px;
font-size: 10px;
text-shadow: none;
color: #fff;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus{
background: #fbfbfb !important;
color: #555b70;
}
/* profile */
.profile-header{
min-width: 255px;
padding-left: 25px !important;
padding-right: 30px !important;
}
.profile-header i{
font-size: 16px;
}
.profile-stats a:hover{
border-bottom: 2px solid #f05050;
padding-bottom: 18px;
}
/* Sidebar Tab */
.w-ml{
width: 255px;
}
.nav-tabs-alt .nav-tabs > li > a{
border: none;
padding: 12px 8px;
margin-right: 0;
border-bottom: 1px solid #e5e6ec !important;
color: #b8bcce;
}
.nav-tabs-alt .nav-tabs > li > a:hover{
border: none;
color: #555b70 !important;
}
.nav-tabs-alt .nav-tabs > li > a:hover > i{
color: #555b70 ;
}
.nav-tabs-alt .nav-tabs > li.active > a,.nav-tabs-alt .nav-tabs > li.active > a > i,.nav-tabs-alt .nav-tabs > li.active > a:hover,.nav-tabs-alt .nav-tabs > li.active > a:hover,.nav-tabs-alt .nav-tabs > li.active > a:hover > i,.nav-tabs-alt .nav-tabs > li.active > a:hover > i{
color: #ff6600 !important;
}
.padder-v{
padding-top: 20px;
padding-bottom: 20px;
}
.list-group.no-borders .list-group-item{
border-bottom: 1px solid #e5e6ec;
}
.sl-item:after{
top : 0;
}
.sl-item > .m-l > .text-mute{
margin-bottom: 8px;
}
.sl-item > .m-l{
margin-top: -6px;
margin-bottom: 30px;
}
.l-h-xs{
line-height: 20px
}
.l-h-s{
line-height: 28px !important;
}
.l-h-md{
line-height: 30px
}
.bg-dark .nav > li > a:hover, .bg-dark .nav > li > a:focus{
color: #b8bcce !important;
background: none;
}
.line1{
height: 1px;
margin: 15px 0 0 0;
}
.navi ul.nav li a{
padding: 10px 20px;
font-size: 14px;
}
.wrapper-grid{
padding : 12px;
}
.bg-dark .nav > li:hover > a, .bg-dark .nav > li:focus > a, .bg-dark .nav > li.active > a{
background: none;
color: #b8bcce !important;
}
/* Icon */
.list-icon i{
font-size: 30px;
float: left;
width: 100%;
}
.list-icon span{
float: left;
width: 100%;
}
/* Search Wrapper */
.search_wrapper {
width: calc(100% - 455px);
display: block;
background-color: #26272e;
padding: 27px 25px 27px 30px;
position: fixed;
left: 200px;
display: none;
top: 0;
}
.search_wrapper form i {
font-size: 14px;
}
.search_wrapper form input[type='text'] {
margin-left: 20px;
background: none;
border: none;
width: calc(100% - 210px);
outline: none;
font-size: 12px;
font-weight: normal;
line-height: 16px;
}
.search_wrapper form input[type='text']:-moz-placeholder {
color: #5f6579;
}
.search_wrapper form input[type='text']::-moz-placeholder {
color: #5f6579;
}
.search_wrapper form input[type='text']:-ms-input-placeholder {
color: #5f6579;
}
.search_wrapper form input[type='text']::-webkit-input-placeholder {
color: #5f6579;
}
.search_wrapper form input[type='text'].placeholder {
color: #5f6579;
}
.open > .search_wrapper{
display: block;
}
.navbar-right > li:first-child > a{
padding-left: 25px;
}
.navbar-nav > li > a{
padding-left: 25px;
padding-right: 25px;
}
.navbar-collapse{
padding-left: 0;
}
/* Button */
.btn {
font-weight: 700;
border-radius: 3px;
outline: 0!important;
font-size: 12px;
padding: 8px 20px;
line-height: 1.5;
}
.btn-sm{
padding: 5px 13px;
}
.btn-icon.btn-sm{
width: 28px;
height: 28px;
}
.btn-default {
color: #555b70 !important;
background-color: #fff;
background-color: #fff;
border-color: #e5e6ec;
border-bottom-color: #e5e6ec;
-webkit-box-shadow:none;
box-shadow: none;
}
.btn-cancel{
background-color: #b8bcce;
color: #ffffff;
}
.btn-cancel:hover{
background-color: #A1A5B7;
color: #ffffff;
}
.btn-block.btn-addon i.pull-right,.btn-block.btn-addon i{
line-height: 46px !important;
}
.btn-block.btn-addon{
line-height: 24px;
}
.btn-block.btn-addon i{
border:none;
}
.btn-addon i{
border-radius: 5px 0 0 5px;
margin: -8px -20px;
margin-right: 15px;
}
.btn-addon i.pull-right{
margin-right: -20px;
border-radius: 0 5px 5px 0;
}
.btn-addon.btn-sm i.pull-right{
margin-right: -13px;
margin-left: 10px;
line-height: 26px;
}
.btn-addon.btn-sm i{
margin: -6px -14px;
margin-right: 12px;
}
.btn > i.pull-left, .btn > i.pull-right{
line-height: 30px;
}
.btn-group.dropdown .btn-default i{
border-left: 1px solid #e5e6ec;
}
.btn-group > .btn{
border-radius: 5px !important;
}
.btn-group-nav > .btn,.btn-group-vertical > .btn{
background-color: #fbfbfb;
color: #b8bcce !important;
border-color: #e5e6ec;
}
.btn-group-nav > .btn.active,.btn-group-vertical > .btn.active{
background-color: #ffffff;
color: #555b70 !important;
box-shadow: none;
}
.btn-group-nav > .btn{
background-color: #fbfbfb;
color: #b8bcce !important;
}
.btn-default.active:hover{
border-color: #e5e6ec !important;
}
.btn-group-nav > .btn,.btn-group-vertical > .btn{
border-radius: 0 !important;
}
.btn-group-vertical > .btn:first-child{
border-radius: 5px 5px 0 0 !important;
}
.btn-group-vertical > .btn:last-child{
border-radius: 0 0 5px 5px !important;
}
.btn-group-nav > .btn:first-child{
border-radius: 5px 0 0 5px !important;
}
.btn-group-nav > .btn:last-child{
border-radius: 0 5px 5px 0!important;
}
.full-radius > .btn:first-child{
border-radius: 5px !important;
}
.badge, .label{
color: #ffffff !important;
font-size: 10px;
text-shadow: none;
}
.form-control{
border-radius: 3px;
border-color: #e5e6ec;
color: #555b70;
font-size: 12px;
height: 36px;
}
.help-block{
font-size: 12px;
color: #b8bcce;
}
.form-control:focus{
border-color: #00b0ff;
}
.input-sm{
height: 30px !important;
}
/* Slider */
.slider-selection{
background-color: #b8bcce !important;
border: 0px solid #b8bcce !important;
}
.slider.slider-vertical .slider-handle,.slider.slider-horizontal .slider-handle {
margin-left: -8px !important;
margin-top: -8px !important;
}
.slider.slider-horizontal .slider-track,.slider.slider-vertical .slider-track{
background-color: #e5e6ec;
border: 0px solid #b8bcce !important;
}
.slider.slider-horizontal{
margin-top: 5px;
}
.slider-handle.round{
border: 5px solid #ffffff !important;
background-color: #00b0ff !important;
}
.tooltip-inner{
padding: 4px 10px !important;
font-size: 12px !important;
color: #555b70 !important;
background-color: #ffffff !important;
border: solid 1px #b8bcce !important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
width: auto !important;
height: auto !important;
}
.tooltip.top .tooltip-arrow{
border-top-color: #ffffff;
}
.input-group-addon{
color: #555b70;
}
.chosen-container{
font-size: 12px !important;
}
.chosen-container .chosen-results li.highlighted{
background-color: #00b0ff !important;
color: #ffffff !importantgc;
}
.chosen-container-multi .chosen-choices .search-field input[type="text"]{
padding: 6px 12px !important;
}
/* Checkbox */
.checkbox-inline{
padding-top: 0px !important;
}
.checkbox-inline input[type="checkbox"]{
position: relative;
}
/* Header Signin */
.header-signin{
background: url('../img/bg-signin.png') no-repeat bottom left;
border-radius: 5px 5px 0 0;
}
.header-signin p{
color: #ffffff;
}
.line-dashed {
background-color: #e5e6ec;
border-style: dashed !important;
border-width: 0;
}
.line{
height: 1px;
}
.dropdown-menu > .panel{
margin: 0 0;
}
/* Pointer Year in Profile Page */
.pointer-year{
}
span.circle{
border-radius: 500px;
width: 10px;
height: 10px;
}
/* App Content Full */
.app-content-full{
top: 70px;
}
/* List Status */
.list-status{
position: relative;
}
.list-status i {
position: absolute;
top: 0;
left: 0;
width: 10px;
height: 10px;
margin: 2px;
border-style: solid;
border-width: 0px;
border-radius: 100%;
}
.list-status i.left{
top: auto;
bottom: 0;
}
.list-status i.on {
background-color: #27c24c;
}
.list-status i.off {
background-color: #98a6ad;
}
.list-status i.busy {
background-color: #f05050;
}
.list-status i.away {
background-color: #fad733;
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset="utf-8" />
<title>Let's Get Married</title>
<meta name="description" content="Bandung Web Kit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="../libs/assets/animate.css/animate.css" type="text/css" />
<link rel="stylesheet" href="../libs/assets/font-awesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="../libs/jquery/bootstrap/dist/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="css/font.css" type="text/css" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<div class="app app-header-fixed ">
<!-- header -->
<header id="header" class="app-header navbar" role="menu">
<!-- navbar collapse -->
<div class="collapse pos-rlt navbar-collapse bg-info">
<!-- buttons -->
<div class="nav navbar-nav hidden-xs"></div>
<!-- / buttons -->
<!-- link and dropdown -->
<ul class="nav navbar-nav hidden-sm">
<li>
<a class="navbar-brand text-lt" href="dashboard.php">
<img src="img/logo-small.png" alt="." class="small-logo hide">
<img src="img/logo.png" alt="." class="large-logo">
</a>
</li>
</ul>
<!-- / link and dropdown -->
<!-- nabar right -->
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="bg-blue profile-header dropdown-toggle clear" data-toggle="dropdown">
<span class="thumb-sm avatar pull-left m-t-n-sm m-b-n-sm m-r-sm">
<img src="img/02.png" alt="...">
</span>
<span class="hidden-sm hidden-md m-r-xl">
<?php
require_once('models/penduduk.php');
$penduduk = new Penduduk;
$nik = $_COOKIE["id_user"];
echo $penduduk->getNama($nik);
?>
</span>
<i class="text14 icon-bdg_setting3 pull-right"></i>
</a>
<!-- dropdown -->
<ul class="dropdown-menu animated fadeIn w-ml">
<li>
<a href="logout.php">Logout</a>
</li>
</ul>
<!-- / dropdown -->
</li>
</ul>
<!-- / navbar right -->
</div>
<!-- / navbar collapse -->
</header>
<!-- / header -->
<!-- content -->
<div id="content" class="app-content" role="main">
<div class="hbox hbox-auto-xs hbox-auto-sm ng-scope">
<div class="col">
<div class="bg-light lter b-b wrapper-md padder-md">
<h1 class="m-n font-bold h4 padder">Form Pendaftaran Perkawinan</h1>
</div>
</div>
</div>
<!-- App-content-body -->
<div class="wrapper-lg bg-light" ng-controller="FormDemoCtrl">
<div class="panel panel-default">
<div class="panel-heading font-bold">Isi form pernikahan di bawah ini dengan jelas dan lengkap!</div>
<div class="panel-body">
<?php
// define variables and set to empty values
$NIK_Suami = $NIK_Istri = $NIK_Hulu = $tanggal_nikah = $tempat_nikah = $agama_nikah = "";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$NIK_Suami = test_input($_POST["NIK_Suami"]);
$NIK_Istri = test_input($_POST["NIK_Istri"]);
$NIK_Hulu = test_input($_POST["NIK_Hulu"]);
$tanggal_nikah = test_input($_POST["tanggal_nikah"]);
$tempat_nikah = test_input($_POST["tempat_nikah"]);
$agama_nikah = test_input($_POST["agama_nikah"]);
}
function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}
?>
<form method="post" class="bs-example form-horizontal" id="formkawin" onsubmit="return validate()" action="db-daftar.php">
<div class="form-group">
<label class="col-lg-2 control-label">NIK Suami</label>
<div class="col-lg-10">
<input type="text" class="form-control" placeholder="NIK Suami" name="NIK_Suami" id="NIKS" value="<?php
if ($penduduk->getJenkel($nik) == "l") {
echo $nik."\" readOnly=\"true\"";
}
?>" required>
<span id="text-niks" class="help-block m-b-none">Isikan NIK Suami.</span>
</div>
</div>
<div class="form-group">
<label class="col-lg-2 control-label">NIK Istri</label>
<div class="col-lg-10">
<input type="text" class="form-control" placeholder="NIK Istri" name="NIK_Istri" id="NIKI" value="<?php
if ($penduduk->getJenkel($nik) == "p") {
echo $nik."\" readOnly=\"true\"";
}
?>" required>
<span id="text-niki" class="help-block m-b-none">Isikan NIK Istri.</span>
</div>
</div>
<div class="form-group">
<label class="col-lg-2 control-label">NIK Penghulu</label>
<div class="col-lg-10">
<input type="text" class="form-control" placeholder="NIK Penghulu" name="NIK_Hulu" id="NIKH" required>
<span id="text-nikh" class="help-block m-b-none">Isikan NIK Penghulu.</span>
</div>
</div>
<div class="form-group">
<label class="col-lg-2 control-label">Tempat Menikah</label>
<div class="col-lg-10">
<input type="text" class="form-control" placeholder="Alamat Tempat Menikah" name="tempat_nikah" required>
<span class="help-block m-b-none">Isikan alamat tempat menikah.</span>
</div>
</div>
<div class="form-group">
<label class="col-lg-2 control-label">Tanggal Menikah</label>
<div class="col-lg-10">
<input type="date" name="tanggal_nikah" required>
<span class="help-block m-b-none">Isikan tanggal menikah.</span>
</div>
</div>
<div class="form-group">
<div class="col-lg-offset-2 col-lg-10">
<input type="submit" class="btn btn-sm btn-info" name="submit" value="Kirim">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- \content -->
<!-- footer -->
<footer id="footer" class="app-footer" role="footer">
<div class="wrapper-md padder-lg b-t bg-light">
<span class="pull-right">&copy; Copyright Bandung <a href ui-scroll="app" class="m-l-sm text-muted"><i class="icon-bdg_arrow11"></i></a></span>
Made with <i class="text-danger fa fa-heart"></i> in Bandung
</div>
</footer>
<!-- / footer -->
</div>
<script>
function validate() {
var NIKSv,NIKIv,NIKHv = 0;
var form;
var patt = /^([0-9]){16}$/;
var NIKS = document.getElementById("NIKS").value;
if (patt.test(NIKS) == false) {
document.getElementById("NIKS").style.border = "1px solid red";
document.getElementById("text-niks").innerHTML = "NIK salah";
document.getElementById("text-niks").style.color = "red";
} else {
NIKSv = 1;
document.getElementById("NIKS").style.border = "1px solid green";
document.getElementById("text-niks").innerHTML = "";
}
var NIKI = document.getElementById("NIKI").value;
if (patt.test(NIKI) == false) {
document.getElementById("NIKI").style.border = "1px solid red";
document.getElementById("text-niki").innerHTML = "NIK salah";
document.getElementById("text-niki").style.color = "red";
} else {
NIKIv = 1;
document.getElementById("NIKI").style.border = "1px solid green";
document.getElementById("text-niki").innerHTML = "";
}
var NIKH = document.getElementById("NIKH").value;
if (patt.test(NIKH) == false) {
document.getElementById("NIKH").style.border = "1px solid red";
document.getElementById("text-nikh").innerHTML = "NIK salah";
document.getElementById("text-nikh").style.color = "red";
} else {
NIKHv = 1;
document.getElementById("NIKH").style.border = "1px solid green";
document.getElementById("text-nikh").innerHTML = "";
}
if (NIKSv == 1 && NIKIv == 1 && NIKHv == 1){
if (NIKS == NIKI || NIKS == NIKH || NIKI == NIKH) {
document.getElementById("NIKH").style.border = "1px solid red";
document.getElementById("NIKI").style.border = "1px solid red";
document.getElementById("NIKS").style.border = "1px solid red";
alert("Suami, Istri, dan Hulu harus orang yang berbeda.")
return false;
} else {
return true;
}
} else {
return false;
}
}
</script>
<script src="../libs/jquery/jquery/dist/jquery.js"></script>
<script src="../libs/jquery/bootstrap/dist/js/bootstrap.js"></script>
<script src="js/ui-load.js"></script>
<script src="js/ui-jp.config.js"></script>
<script src="js/ui-jp.js"></script>
<script src="js/ui-nav.js"></script>
<script src="js/ui-toggle.js"></script>
<script src="js/ui-client.js"></script>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<?php
if (isset($_COOKIE["id_user"])) {
?>
<html lang="en" class="">
<head>
<meta charset="utf-8" />
<title>Let's Get Married</title>
<meta name="description" content="Bandung Web Kit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="../libs/assets/animate.css/animate.css" type="text/css" />
<link rel="stylesheet" href="../libs/assets/font-awesome/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="../libs/jquery/bootstrap/dist/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="css/font.css" type="text/css" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<?php
require_once('models/perkawinan.php');
$perkawinan = new Perkawinan;
require_once('models/pesan.php');
$pesan = new Pesan;
?>
<body>
<div class="app app-header-fixed ">
<!-- header -->
<header id="header" class="app-header navbar" role="menu">
<!-- navbar collapse -->
<div class="collapse pos-rlt navbar-collapse bg-info">
<!-- buttons -->
<div class="nav navbar-nav hidden-xs"></div>
<!-- / buttons -->
<!-- link and dropdown -->
<ul class="nav navbar-nav hidden-sm">
<li>
<a class="navbar-brand text-lt">
<img src="img/logo-small.png" alt="." class="small-logo hide">
<img src="img/logo.png" alt="." class="large-logo">
</a>
</li>
</ul>
<!-- / link and dropdown -->
<!-- navbar right -->
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="bg-blue profile-header dropdown-toggle clear" data-toggle="dropdown">
<span class="thumb-sm avatar pull-left m-t-n-sm m-b-n-sm m-r-sm">
<img src="img/02.png" alt="...">
</span>
<span class="hidden-sm hidden-md m-r-xl">
<?php
require_once('models/penduduk.php');
$penduduk = new Penduduk;
$nik = $_COOKIE["id_user"];
echo $penduduk->getNama($nik);
?>
</span> <i class="text14 icon-bdg_setting3 pull-right"></i>
</a>
<!-- dropdown -->
<ul class="dropdown-menu animated fadeIn w-ml">
<li>
<a href="logout.php">Logout</a>
</li>
</ul>
<!-- / dropdown -->
</li>
</ul>
<!-- / navbar right -->
</div>
<!-- / navbar collapse -->
</header>
<!-- / header -->
<!-- content -->
<div id="content" class="app-content" role="main">
<div class="hbox hbox-auto-xs hbox-auto-sm ng-scope">
<div class="col">
<div class="app-content-body ">
<div class="bg-light b-b wrapper-md padder-md ">
<h1 class="m-n font-bold h4 padder" >Beranda</h1>
</div>
<div class="wrapper-lg bg-light">
<div class="row">
<div class="col-sm-6">
<div class="panel panel-default">
<div class="panel-heading font-semibold">
Status Perkawinan
</div>
<div class="panel-body">
<?php
function TanggalIndo($date){
$BulanIndo = array("Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember");
$tahun = substr($date, 0, 4);
$bulan = substr($date, 5, 2);
$tgl = substr($date, 8, 2);
$result = $tgl . " " . $BulanIndo[(int)$bulan-1] . " ". $tahun;
return($result);
}
$status = $penduduk->getStatus($nik);
$jk = $penduduk->getJenkel($nik);
if ($status == "Kawin") {
echo "Anda sudah menikah dengan ";
echo $penduduk->getNama($perkawinan->get_nik_pasangan($nik,$jk));
echo " (NIK ".$perkawinan->get_nik_pasangan($nik,$jk).")";
foreach ($perkawinan->get_perkawinan_by_nik($nik) as $data) {
echo " pada tanggal ".TanggalIndo($data['tanggal_nikah']);
echo " di ".$data['tempat_nikah'].".";
}
} else {
echo "Anda belum menikah.";
}
?>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="panel panel-default">
<div class="panel-heading font-semibold">
Status Pendaftaran
</div>
<div class="panel-body">
<?php
if ($status == "Kawin") {
echo "Anda tidak bisa mendaftarkan perkawinan karena Anda sudah menikah.";
} else {
$p = $perkawinan->get_perkawinan_on_proses_by_nik($nik);
if ($p->num_rows > 0) {
foreach ($p as $data) {
echo "Pendaftaran perkawinan anda ";
if ($data['status'] == "On Process") {
echo "sedang diproses oleh Dinas Kependudukan dan Catatan Sipil Kota Bandung.";
} else if ($data['status'] == "Declined") {
echo "ditolak karena ".$pesan->get_pesan_by_nik($nik);?>
<br><br>
<a href="daftar.php">
<button class="btn m-b-sm m-r-sm btn-info">
Daftar Perkawinan
</button>
</a>
<?php }
}
} else {
echo "Anda belum mendaftarkan perkawinan.<br><br>";?>
<a href="daftar.php">
<button class="btn m-b-sm m-r-sm btn-info">
Daftar Perkawinan
</button>
</a>
<?php }
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- \content -->
<!-- footer -->
<footer id="footer" class="app-footer" role="footer">
<div class="wrapper-md padder-lg b-t bg-light">
<span class="pull-right">&copy; Copyright Bandung <a href ui-scroll="app" class="m-l-sm text-muted"><i class="icon-bdg_arrow11"></i></a></span>
Made with <i class="text-danger fa fa-heart"></i> in Bandung
</div>
</footer>
<!-- / footer -->
</div>
<script src="../libs/jquery/jquery/dist/jquery.js"></script>
<script src="../libs/jquery/bootstrap/dist/js/bootstrap.js"></script>
<script src="js/ui-load.js"></script>
<script src="js/ui-jp.config.js"></script>
<script src="js/ui-jp.js"></script>
<script src="js/ui-nav.js"></script>
<script src="js/ui-toggle.js"></script>
<script src="js/ui-client.js"></script>
</body>
</html>
<?php
} else {
header("Location: index.php");
}
?>
\ No newline at end of file
<?php
require_once("models/perkawinan.php");
require_once("models/penduduk.php");
$penduduk = new Penduduk;
$perkawinan = new Perkawinan;
$NIK_Suami = $_POST["NIK_Suami"];
$NIK_Istri = $_POST["NIK_Istri"];
$NIK_Hulu = $_POST["NIK_Hulu"];
$tanggal_nikah = $_POST["tanggal_nikah"];
$tempat_nikah = $_POST["tempat_nikah"];
if ($penduduk->getNama($NIK_Suami) != "" && $penduduk->getNama($NIK_Istri) != "") {
if ($penduduk->getAgama($NIK_Suami) == $penduduk->getAgama($NIK_Istri)) {
if ($penduduk->getJenkel($NIK_Suami) != $penduduk->getAgama($NIK_Istri)) {
if ($penduduk->getStatus($NIK_Suami) == $penduduk->getStatus($NIK_Istri)) {
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Data yang anda masukkan sudah lengkap! Tunggu approval dari Catatan Sipil');
window.location.href='daftar.php';
</SCRIPT>");
$agama_nikah = $penduduk->getAgama($NIK_Suami);
$perkawinan->create($NIK_Suami, $NIK_Istri, $NIK_Hulu, $tempat_nikah, $tanggal_nikah, $agama_nikah);
header("Location: uploadBukuNikah.php");
} else {
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Tidak boleh menikahi orang yang sudah menikah');
window.location.href='daftar.php';
</SCRIPT>");
}
} else {
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Tidak boleh menikahi sesama jenis');
window.location.href='daftar.php';
</SCRIPT>");
}
} else {
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Suami dan Istri berbeda agama');
window.location.href='daftar.php';
</SCRIPT>");
}
} else {
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Pasangan Anda tidak terdaftar sebagai penduduk');
window.location.href='daftar.php';
</SCRIPT>");
}
?>
\ No newline at end of file
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: May 16, 2016 at 12:14 PM
-- Server version: 10.1.9-MariaDB
-- PHP Version: 7.0.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `db_ppl_core`
--
-- --------------------------------------------------------
--
-- Table structure for table `jabatan`
--
CREATE TABLE `jabatan` (
`id` varchar(25) NOT NULL,
`id_rumpun` varchar(25) NOT NULL,
`nama` varchar(100) NOT NULL,
`kualifikasi` enum('Pendidikan','Keahlian') NOT NULL,
`keterangan` varchar(255) NOT NULL,
`kode` varchar(25) NOT NULL,
`nilai` int(10) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `jabatan`
--
INSERT INTO `jabatan` (`id`, `id_rumpun`, `nama`, `kualifikasi`, `keterangan`, `kode`, `nilai`, `created_at`, `updated_at`, `status`) VALUES
('78', '123', 'Pimpinan', 'Keahlian', '', '12764', 2, '2016-04-04 20:00:32', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `kecamatan`
--
CREATE TABLE `kecamatan` (
`id` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`alamat_kantor` varchar(255) NOT NULL,
`id_pengurus` varchar(16) NOT NULL,
`id_kota` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `kecamatan`
--
INSERT INTO `kecamatan` (`id`, `nama`, `alamat_kantor`, `id_pengurus`, `id_kota`, `created_at`, `updated_at`, `status`) VALUES
(1, 'Malang Sekali', 'Jalan Tinombala 22', '3573041003950011', 37, '2016-03-31 14:48:51', NULL, 1),
(2, 'Cimenyan', 'Ap #342-9800 Lacus. Avenue', '3573041003950011', 4, '2016-05-15 01:34:01', NULL, 1),
(3, 'Cilengkrang', 'P.O. Box 821, 2745 Imperdiet Road', '3573041003950011', 4, '2015-09-22 20:08:18', NULL, 0),
(4, 'Bojongsoang', 'P.O. Box 774, 1602 Praesent St.', '3573041003950011', 4, '2015-08-29 09:28:27', NULL, 1),
(5, 'Margahayu', 'P.O. Box 910, 1246 Gravida Avenue', '3573041003950011', 4, '2016-12-01 14:28:03', NULL, 0),
(6, 'Margaasih', '4451 Blandit St.', '3573041003950011', 4, '2016-07-06 02:33:16', NULL, 1),
(7, 'Katapang', 'P.O. Box 197, 9689 Quis Road', '3573041003950011', 4, '2016-10-19 08:34:54', NULL, 0),
(8, 'Dayeuhkolot', '500-4547 Suspendisse Ave', '3573041003950011', 4, '2016-09-30 05:56:14', NULL, 0),
(9, 'Banjar', 'P.O. Box 494, 5114 Scelerisque Av.', '3573041003950011', 4, '2015-07-28 10:44:08', NULL, 1),
(10, 'Pameungpeuk', '732 Lacus. Rd.', '3573041003950011', 4, '2015-10-04 02:05:13', NULL, 0),
(11, 'Pangalengan', 'P.O. Box 654, 2684 Gravida. Av.', '3573041003950011', 4, '2015-05-06 12:08:31', NULL, 0),
(12, 'Arjasari', '4773 Nulla. Rd.', '3573041003950011', 4, '2015-10-31 19:00:30', NULL, 1),
(13, 'Cimaung', '538-4942 Sapien, St.', '3573041003950011', 4, '2016-05-13 14:55:11', NULL, 1),
(14, 'Cicalengka', 'Ap #627-2890 Nibh. Av.', '3573041003950011', 4, '2016-06-07 19:18:22', NULL, 1),
(15, 'Nagreg', 'P.O. Box 694, 2529 Sed Ave', '3573041003950011', 4, '2016-12-02 20:07:57', NULL, 1),
(16, 'Cikancung', 'P.O. Box 643, 1759 Nunc Road', '3573041003950011', 4, '2015-04-08 05:26:50', NULL, 0),
(17, 'Rancaekek', 'Ap #235-3584 A, Rd.', '3573041003950011', 4, '2015-07-16 01:36:05', NULL, 1),
(18, 'Ciparay', '763-1688 Amet, Road', '3573041003950011', 4, '2016-11-10 04:21:57', NULL, 0),
(19, 'Pacet', '5357 Sit St.', '3573041003950011', 4, '2015-06-21 23:34:12', NULL, 1),
(20, 'Kertasari', '8127 Leo. Ave', '3573041003950011', 4, '2016-04-08 19:01:51', NULL, 1),
(21, 'Baleendah', '976-2539 Et St.', '3573041003950011', 4, '2017-02-04 03:13:19', NULL, 0),
(22, 'Majalaya', 'P.O. Box 126, 4054 Mattis. Av.', '3573041003950011', 4, '2015-09-12 14:59:56', NULL, 0),
(23, 'Solokanjeruk', 'Ap #158-8629 Sem Road', '3573041003950011', 4, '2017-01-28 14:14:59', NULL, 0),
(24, 'Paseh', 'P.O. Box 431, 7116 Ipsum St.', '3573041003950011', 4, '2015-09-26 21:00:21', NULL, 0),
(25, 'Ibun', 'P.O. Box 609, 6707 Donec St.', '3573041003950011', 4, '2016-04-01 11:24:18', NULL, 0),
(26, 'Soreang', 'P.O. Box 553, 2066 Donec Ave', '3573041003950011', 4, '2017-01-04 14:41:40', NULL, 1),
(27, 'Pasirjambu', 'P.O. Box 855, 7052 Tristique Avenue', '3573041003950011', 4, '2016-01-21 02:26:17', NULL, 0),
(28, 'Ciwidey', 'P.O. Box 457, 7914 A, Avenue', '3573041003950011', 4, '2015-12-31 10:12:18', NULL, 1),
(29, 'Rancabali', 'Ap #724-7580 Orci. Ave', '3573041003950011', 4, '2016-04-05 07:32:43', NULL, 0),
(30, 'Cangkuang', '5536 Facilisis Rd.', '3573041003950011', 4, '2015-08-21 21:01:42', NULL, 0),
(31, 'Cileunyi', '4341 Bibendum. Rd.', '3573041003950011', 4, '2016-04-24 16:48:42', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `keluarga`
--
CREATE TABLE `keluarga` (
`id` varchar(16) NOT NULL,
`alamat` varchar(255) NOT NULL,
`id_rt` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `keluarga`
--
INSERT INTO `keluarga` (`id`, `alamat`, `id_rt`, `created_at`, `status`) VALUES
('1', 'Jalan Ciumbuleuit 51/155A', 1, '2016-03-31 14:50:42', 1),
('2', 'Baker Street 221B', 78, '2016-04-04 23:54:01', 1);
-- --------------------------------------------------------
--
-- Table structure for table `kelurahan`
--
CREATE TABLE `kelurahan` (
`id` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`alamat_kantor` varchar(255) NOT NULL,
`id_pengurus` varchar(16) NOT NULL,
`id_kecamatan` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `kelurahan`
--
INSERT INTO `kelurahan` (`id`, `nama`, `alamat_kantor`, `id_pengurus`, `id_kecamatan`, `created_at`, `updated_at`, `status`) VALUES
(1, 'Pisang Candi', 'Jalan Gelut 11', '3573041003950011', 1, '2016-03-31 14:49:17', NULL, 1),
(2, 'Sicilia', 'Ap #716-1262 Magna. Avenue', '3573041003950011', 7, '2016-10-07 03:12:05', NULL, 0),
(3, 'RS', 'Ap #703-4534 Malesuada Ave', '3573041003950011', 28, '2015-07-09 10:21:33', NULL, 1),
(4, 'WB', '3732 Amet, St.', '3573041003950011', 4, '2016-08-19 13:47:20', NULL, 1),
(5, 'Abruzzo', '782-8481 In, Avenue', '3573041003950011', 18, '2016-01-26 06:12:03', NULL, 1),
(6, 'Minas Gerais', 'P.O. Box 364, 6366 Turpis St.', '3573041003950011', 14, '2017-01-15 12:39:18', NULL, 1),
(7, 'G', 'Ap #606-2381 Dolor Rd.', '3573041003950011', 13, '2015-10-06 12:09:22', NULL, 1),
(8, 'Wie', 'P.O. Box 717, 754 Consequat Ave', '3573041003950011', 22, '2017-02-03 07:11:05', NULL, 1),
(9, 'BK', 'P.O. Box 157, 2774 Vel Avenue', '3573041003950011', 30, '2015-04-21 00:13:15', NULL, 0),
(10, 'Iowa', 'P.O. Box 810, 3212 Metus. Ave', '3573041003950011', 19, '2015-10-23 03:07:20', NULL, 0),
(11, 'AB', 'Ap #505-2244 Vestibulum Ave', '3573041003950011', 20, '2016-07-17 08:56:04', NULL, 1),
(12, 'North Island', 'P.O. Box 545, 8778 Elit, Road', '3573041003950011', 30, '2016-07-20 03:14:54', NULL, 1),
(13, 'Limburg', 'Ap #840-3076 Massa. St.', '3573041003950011', 18, '2015-05-14 16:55:23', NULL, 0),
(14, 'Leinster', 'P.O. Box 917, 1009 Lobortis St.', '3573041003950011', 30, '2016-05-26 10:47:55', NULL, 0),
(15, 'Ontario', '281-4781 Cum Avenue', '3573041003950011', 16, '2015-04-17 19:01:43', NULL, 0),
(16, 'Ostergot', 'Ap #495-8330 Sagittis Ave', '3573041003950011', 6, '2017-02-24 17:54:11', NULL, 0),
(17, 'GA', '624-2520 Tincidunt Av.', '3573041003950011', 11, '2016-11-08 19:59:26', NULL, 0),
(18, 'HH', 'P.O. Box 512, 9963 Enim Rd.', '3573041003950011', 25, '2016-07-30 15:27:21', NULL, 1),
(19, 'Buteshire', 'P.O. Box 865, 2844 Eget Av.', '3573041003950011', 22, '2016-12-31 21:32:53', NULL, 0),
(20, 'Lanarkshire', 'Ap #970-1739 Ornare. Road', '3573041003950011', 31, '2015-05-24 19:23:45', NULL, 0),
(21, 'WA', 'P.O. Box 184, 2333 Ipsum Road', '3573041003950011', 16, '2016-02-19 04:08:53', NULL, 1),
(22, 'RJ', 'P.O. Box 808, 9501 Mauris Ave', '3573041003950011', 22, '2016-05-04 17:22:07', NULL, 1),
(23, 'Wie', 'Ap #600-5377 Luctus Road', '3573041003950011', 12, '2016-09-24 08:32:55', NULL, 0),
(24, 'SI', 'Ap #969-1625 Suspendisse Road', '3573041003950011', 29, '2016-09-15 17:36:13', NULL, 1),
(25, 'Sardegna', '6282 Tellus. St.', '3573041003950011', 27, '2017-03-29 00:08:26', NULL, 0),
(26, 'Hamburg', 'P.O. Box 140, 3731 Eu Avenue', '3573041003950011', 13, '2016-07-18 05:52:49', NULL, 1),
(27, 'Overijssel', '3929 Quam Street', '3573041003950011', 10, '2015-06-10 12:58:13', NULL, 0),
(28, 'North Island', 'P.O. Box 486, 6071 Proin Avenue', '3573041003950011', 12, '2015-08-25 02:11:31', NULL, 1),
(29, 'Gl', '611-2661 Pede. St.', '3573041003950011', 12, '2016-07-19 09:37:33', NULL, 0),
(30, 'Jönköpings län', '786-2126 Vestibulum Rd.', '3573041003950011', 20, '2015-11-30 10:29:11', NULL, 0),
(31, 'SJ', '409-2625 Mauris Street', '3573041003950011', 11, '2017-02-24 04:29:00', NULL, 1),
(32, 'Quebec', '9518 Dui Avenue', '3573041003950011', 11, '2016-04-15 23:43:54', NULL, 0),
(33, 'South Australia', '5845 Lectus Avenue', '3573041003950011', 2, '2017-03-27 17:04:49', NULL, 1),
(34, 'Kano', 'P.O. Box 403, 3520 Massa Avenue', '3573041003950011', 5, '2016-06-08 21:33:28', NULL, 0),
(35, 'NI', '1791 Condimentum. Rd.', '3573041003950011', 15, '2015-06-16 02:00:19', NULL, 0),
(36, 'Basilicata', 'P.O. Box 152, 8380 Dolor, Street', '3573041003950011', 14, '2017-01-17 17:16:28', NULL, 0),
(37, 'DE', '917-1580 Mauris St.', '3573041003950011', 13, '2016-03-05 10:39:17', NULL, 1),
(38, 'Zl', '927-205 Gravida Road', '3573041003950011', 2, '2015-07-13 07:24:48', NULL, 0),
(39, 'QC', 'P.O. Box 435, 6413 Velit Rd.', '3573041003950011', 16, '2016-08-12 22:54:04', NULL, 1),
(40, 'WV', '4399 Litora St.', '3573041003950011', 11, '2016-10-05 10:27:56', NULL, 1),
(41, 'Ontario', 'P.O. Box 346, 4280 Eu St.', '3573041003950011', 16, '2015-07-03 12:21:09', NULL, 0),
(42, 'TN', 'Ap #714-6585 Est Street', '3573041003950011', 29, '2016-11-08 11:44:08', NULL, 0),
(43, 'Kayseri', '4067 Mauris Av.', '3573041003950011', 22, '2016-10-04 19:20:40', NULL, 0),
(44, 'AN', 'Ap #881-3128 Lorem Rd.', '3573041003950011', 17, '2015-10-03 12:19:31', NULL, 0),
(45, 'Waals-Brabant', 'P.O. Box 960, 6341 Malesuada St.', '3573041003950011', 19, '2015-08-13 11:45:07', NULL, 1),
(46, 'Zuid Holland', '707-7402 Odio St.', '3573041003950011', 27, '2015-04-25 12:37:54', NULL, 1),
(47, 'Antwerpen', '154-5318 Bibendum. St.', '3573041003950011', 31, '2016-11-28 16:54:00', NULL, 1),
(48, 'Akwa Ibom', 'Ap #852-6902 Lobortis St.', '3573041003950011', 29, '2016-12-04 11:12:19', NULL, 1),
(49, 'Metropolitana de Santiago', '6747 Ridiculus Rd.', '3573041003950011', 29, '2017-03-29 00:24:51', NULL, 0),
(50, 'Andalucía', 'P.O. Box 872, 2754 Arcu Rd.', '3573041003950011', 27, '2016-12-30 11:21:43', NULL, 1),
(51, 'SJ', '4699 Dictum Rd.', '3573041003950011', 23, '2015-06-21 10:22:10', NULL, 1),
(52, 'BE', 'P.O. Box 393, 5255 Bibendum Av.', '3573041003950011', 31, '2015-04-11 09:52:48', NULL, 1),
(53, 'VA', 'Ap #889-8471 Lacus. Avenue', '3573041003950011', 1, '2016-12-30 17:05:24', NULL, 0),
(54, 'Piemonte', 'P.O. Box 740, 8105 Vestibulum. Av.', '3573041003950011', 9, '2015-06-29 08:49:37', NULL, 1),
(55, 'Mazowieckie', '480-665 Id Rd.', '3573041003950011', 1, '2016-06-16 21:11:38', NULL, 1),
(56, 'Bur', '782-6887 Nisi Ave', '3573041003950011', 28, '2015-04-29 18:36:25', NULL, 1),
(57, 'IL', 'P.O. Box 252, 4628 Dictum Rd.', '3573041003950011', 10, '2015-07-26 12:49:26', NULL, 0),
(58, 'NO', '3918 Eros. Rd.', '3573041003950011', 30, '2016-08-29 14:38:57', NULL, 1),
(59, 'North Island', 'P.O. Box 951, 969 Fusce Road', '3573041003950011', 23, '2017-02-03 06:29:15', NULL, 0),
(60, 'NSW', 'Ap #779-4114 Magna. Av.', '3573041003950011', 6, '2016-11-01 16:18:24', NULL, 1),
(61, 'Wie', 'P.O. Box 887, 1457 Nibh St.', '3573041003950011', 28, '2016-11-16 19:37:06', NULL, 1),
(62, 'MS', '3978 Eu Ave', '3573041003950011', 5, '2016-06-01 09:43:33', NULL, 1),
(63, 'MAR', '4385 Purus, Road', '3573041003950011', 14, '2015-08-25 19:21:52', NULL, 0),
(64, 'Berlin', 'P.O. Box 183, 8352 Elit, Rd.', '3573041003950011', 13, '2016-11-01 08:46:49', NULL, 0),
(65, 'Bur', 'P.O. Box 241, 8283 Fames Road', '3573041003950011', 23, '2017-03-27 17:44:45', NULL, 1),
(66, 'L', '8071 Dolor. Avenue', '3573041003950011', 31, '2016-04-10 19:17:51', NULL, 0),
(67, 'AS', '133-4080 Natoque St.', '3573041003950011', 19, '2016-04-24 00:16:36', NULL, 1),
(68, 'Canarias', '747-1888 Integer St.', '3573041003950011', 5, '2015-12-11 00:40:16', NULL, 0),
(69, 'Jigawa', 'P.O. Box 710, 8946 Maecenas Street', '3573041003950011', 22, '2016-11-01 17:51:12', NULL, 0),
(70, 'West Lothian', 'Ap #874-5867 Volutpat. St.', '3573041003950011', 10, '2016-08-10 17:11:39', NULL, 0),
(71, 'O', '8658 Tellus Rd.', '3573041003950011', 17, '2015-09-19 21:05:51', NULL, 0),
(72, 'IN', '7162 Lectus Rd.', '3573041003950011', 25, '2017-02-06 19:38:40', NULL, 1),
(73, 'Virginia', 'Ap #822-8473 Rutrum St.', '3573041003950011', 16, '2016-09-06 19:55:10', NULL, 0),
(74, 'Connacht', 'Ap #967-183 A Rd.', '3573041003950011', 17, '2016-12-14 09:24:26', NULL, 0),
(75, 'Istanbul', 'P.O. Box 193, 7725 Magna. Avenue', '3573041003950011', 12, '2016-06-18 10:18:56', NULL, 1),
(76, 'KO', '3054 Viverra. St.', '3573041003950011', 20, '2016-12-25 18:24:32', NULL, 1),
(77, 'CL', 'P.O. Box 650, 6460 Aptent Ave', '3573041003950011', 9, '2016-08-10 23:59:22', NULL, 0),
(78, 'Alberta', 'Ap #679-6848 Dui, Rd.', '3573041003950011', 9, '2017-04-01 07:54:07', NULL, 1),
(79, 'MS', 'P.O. Box 345, 6028 Nibh. Av.', '3573041003950011', 11, '2016-03-01 07:02:22', NULL, 0),
(80, 'Zl', 'P.O. Box 227, 6705 Justo. Rd.', '3573041003950011', 30, '2016-03-15 11:50:28', NULL, 1),
(81, 'L', '702-866 Hendrerit Rd.', '3573041003950011', 23, '2016-03-19 06:56:35', NULL, 1),
(82, 'Ile-de-France', '201-3350 Suscipit Avenue', '3573041003950011', 5, '2015-12-31 02:37:33', NULL, 1),
(83, 'Friesland', 'Ap #709-7664 Tellus, Road', '3573041003950011', 3, '2017-02-17 17:09:29', NULL, 0),
(84, 'AQ', '9053 Fusce Rd.', '3573041003950011', 12, '2015-09-22 03:12:50', NULL, 1),
(85, 'Trentino-Alto Adige', '336-8124 Dolor Av.', '3573041003950011', 6, '2015-12-20 00:31:52', NULL, 0),
(86, 'ON', '186-6062 Semper Rd.', '3573041003950011', 19, '2016-01-01 13:30:57', NULL, 1),
(87, 'Delaware', '426-5529 Vel, Av.', '3573041003950011', 22, '2016-08-19 14:26:31', NULL, 1),
(88, 'Styria', '1890 Ridiculus Av.', '3573041003950011', 3, '2016-03-15 23:41:41', NULL, 0),
(89, 'Sl?skie', '844-2822 Posuere Ave', '3573041003950011', 11, '2015-12-31 22:20:36', NULL, 0),
(90, 'São Paulo', '828-4659 Duis Road', '3573041003950011', 4, '2015-11-18 16:50:56', NULL, 0),
(91, 'PA', '603-9085 Non Rd.', '3573041003950011', 7, '2016-02-06 17:55:14', NULL, 0),
(92, 'Karnataka', '8363 Amet Avenue', '3573041003950011', 27, '2016-10-27 14:35:01', NULL, 0),
(93, 'Antwerpen', '241-405 Ante Street', '3573041003950011', 11, '2015-08-24 21:01:35', NULL, 1),
(94, 'ON', '2468 Cursus Rd.', '3573041003950011', 16, '2016-10-18 04:14:33', NULL, 1),
(95, 'SJ', 'Ap #734-3596 Metus Av.', '3573041003950011', 13, '2016-07-27 16:42:49', NULL, 1),
(96, 'SK', 'P.O. Box 322, 5982 Eu, Avenue', '3573041003950011', 10, '2015-10-23 07:26:31', NULL, 0),
(97, 'Noord Holland', 'Ap #330-5732 Vestibulum Av.', '3573041003950011', 6, '2016-06-22 20:42:06', NULL, 1),
(98, 'North Island', '6916 Sociis Street', '3573041003950011', 17, '2017-01-13 20:49:13', NULL, 1),
(99, 'W', 'Ap #411-1383 Aenean Rd.', '3573041003950011', 29, '2016-01-20 20:20:31', NULL, 0),
(100, 'NV', 'P.O. Box 252, 2230 Urna. Avenue', '3573041003950011', 13, '2016-12-03 04:32:22', NULL, 1),
(101, 'Brussels Hoofdstedelijk Gewest', '8875 Donec Road', '3573041003950011', 26, '2016-11-20 13:45:08', NULL, 0);
-- --------------------------------------------------------
--
-- Table structure for table `kota`
--
CREATE TABLE `kota` (
`id` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`alamat_kantor` varchar(255) NOT NULL,
`id_pengurus` varchar(16) DEFAULT NULL,
`id_provinsi` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `kota`
--
INSERT INTO `kota` (`id`, `nama`, `alamat_kantor`, `id_pengurus`, `id_provinsi`, `created_at`, `updated_at`, `status`) VALUES
(1, 'Bogor', 'Jl. Ir. H. Juanda No. 10 Bogor', '3573041003950012', 32, '2016-04-04 16:54:05', NULL, 1),
(2, 'Sukabumi', 'Jl. R. Syamsudin S.H. No. 25 Sukabumi', '3573041003950012', 32, '2016-04-04 16:54:42', NULL, 1),
(3, 'Cianjur', 'Kantor Bupati Jl.H.Siti Jenar No.31,Cianjur', '3573041003950011', 32, '2016-04-04 16:58:09', NULL, 1),
(4, 'Bandung', 'Kantor Walikota Jl.Wastukencana No.2,Bandung', '3573041003950011', 32, '2016-04-04 16:58:56', NULL, 1),
(5, 'Garut', 'Kantor Bupati Jl.Pembangunan No.189,Garut', '3573041003950011', 32, '2016-04-04 16:59:32', NULL, 1),
(6, 'Tasikmalaya', 'Kantor Bupati Jl.Mayor Utarya No.1,Tasikmalaya', '3573041003950011', 32, '2016-04-04 17:00:03', NULL, 1),
(7, 'Ciamis', 'Kantor Bupati Jl.Jend.Sudirman No.16,Ciamis', '3573041003950011', 32, '2016-04-04 17:00:36', NULL, 1),
(8, 'Kuningan', 'Kantor Bupati Jl.Siliwangi No.88,Kuningan', '3573041003950011', 32, '2016-04-04 17:01:10', NULL, 1),
(9, 'Cirebon', 'Kantor Walikota Jl.Siliwangi No.84,Cirebon', '3573041003950011', 32, '2016-04-04 17:01:45', NULL, 1),
(10, 'Majalengka', 'Kantor Bupati Jl.A.Yani No.1,Majalengka', '3573041003950011', 32, '2016-04-04 17:02:22', NULL, 1),
(11, 'Sumedang', 'Kantor Bupati Jl.Prabu Geusan Ulun No.36,Sumedang', '3573041003950011', 32, '2016-04-04 17:02:56', NULL, 1),
(12, 'Indramayu', 'Kantor Bupati Jl.Mayjen.Sutoyo No.1/E,Indramayu', '3573041003950011', 32, '2016-04-04 17:03:29', NULL, 1),
(13, 'Subang', 'Kantor Bupati Jl.Dewi Sartika No.2,Subang', '3573041003950011', 32, '2016-04-04 17:03:55', NULL, 1),
(14, 'Purwakarta', 'Kantor Bupati Jl.Gandanegara No.25,Purwakarta', '3573041003950012', 32, '2016-04-04 17:04:25', NULL, 1),
(15, 'Karawang', 'Kantor Bupati Jl.A.Yani No.1,Karawang', '3573041003950011', 32, '2016-04-04 17:05:00', NULL, 1),
(16, 'Bekasi', 'Kantor Walikota Jl.Ir.H.Juanda No.100,Bekasi', '3573041003950011', 32, '2016-04-04 17:05:30', NULL, 1),
(37, 'Kota Bandung', 'Jalan Ciumbuleuit XX', '3573041003950011', 32, '2016-03-30 23:01:31', NULL, 0);
-- --------------------------------------------------------
--
-- Table structure for table `pegawai`
--
CREATE TABLE `pegawai` (
`nip` varchar(20) NOT NULL,
`id_penduduk` varchar(16) NOT NULL,
`id_jabatan` varchar(20) NOT NULL,
`id_atasan` varchar(20) DEFAULT NULL,
`nama` varchar(25) NOT NULL,
`golongan` varchar(25) NOT NULL,
`unit_kerja` varchar(100) NOT NULL,
`pangkat` varchar(25) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `pegawai`
--
INSERT INTO `pegawai` (`nip`, `id_penduduk`, `id_jabatan`, `id_atasan`, `nama`, `golongan`, `unit_kerja`, `pangkat`, `created_at`, `status`) VALUES
('678245', '3573041003950011', '78', NULL, 'Natan', 'V', 'sipil', '2', '2016-04-04 20:10:21', 1),
('67824587', '3573041003950012', '78', '678245', 'Joan', 'II', 'Sipil', '2', '2016-04-04 20:14:13', 1);
-- --------------------------------------------------------
--
-- Table structure for table `penduduk`
--
CREATE TABLE `penduduk` (
`id` varchar(16) NOT NULL,
`nama` varchar(255) NOT NULL,
`tanggal_lahir` date NOT NULL,
`tempat_lahir` int(11) NOT NULL,
`jenis_kelamin` varchar(1) NOT NULL,
`id_keluarga` varchar(16) DEFAULT NULL,
`id_ayah` varchar(16) DEFAULT NULL,
`id_ibu` varchar(16) DEFAULT NULL,
`hubungan_keluarga` varchar(50) NOT NULL,
`golongan_darah` varchar(2) DEFAULT NULL,
`agama` varchar(50) DEFAULT NULL,
`wni` tinyint(1) DEFAULT NULL,
`status_perkawinan` varchar(50) NOT NULL,
`pekerjaan` varchar(50) DEFAULT NULL,
`pendidikan` varchar(50) DEFAULT NULL,
`id_izin_tetap` varchar(20) DEFAULT NULL,
`id_passport` varchar(16) DEFAULT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `penduduk`
--
INSERT INTO `penduduk` (`id`, `nama`, `tanggal_lahir`, `tempat_lahir`, `jenis_kelamin`, `id_keluarga`, `id_ayah`, `id_ibu`, `hubungan_keluarga`, `golongan_darah`, `agama`, `wni`, `status_perkawinan`, `pekerjaan`, `pendidikan`, `id_izin_tetap`, `id_passport`, `created_at`, `status`) VALUES
('0037010903950000', 'Natan', '1995-03-09', 4, 'l', '1', '3573041003950012', '3573041003950011', 'Anak', 'A', 'Islam', 1, 'Belum Kawin', NULL, NULL, NULL, NULL, '2016-04-19 11:35:24', 1),
('3573041003950011', 'Natan', '1995-03-10', 37, 'l', '2', '0037010903950000', '3573041003950011', 'Anak', 'B', 'Kristen Protestan', 1, 'Kawin', 'Mahasiswa', 'Sekolah Menengah', NULL, NULL, '2016-03-31 14:48:42', 1),
('3573041003950012', 'Juol', '1995-05-20', 37, 'l', '2', '3573041003950011', NULL, 'Cucu', 'A', 'Islam', 1, '', 'Gabut', 'SD', NULL, NULL, '2016-04-02 09:46:08', 1),
('3573041003950013', 'Acel', '1995-10-07', 4, 'p', '1', '3573041003950011', NULL, 'Anak', 'O', 'Kristen Protestan', 1, 'Kawin', 'Mahasiswa', 'Sekolah Menengah', NULL, NULL, '2016-04-07 00:15:55', 1),
('3573041003950014', 'Fiqie', '1994-09-02', 6, 'l', '1', '3573041003950011', NULL, 'Anak', 'B', 'Islam', 1, 'Kawin', 'Gabut', 'Sekolah Menengah', NULL, NULL, '2016-04-07 00:19:40', 1),
('3573041003950015', 'Raisa', '1990-05-16', 11, 'p', '2', NULL, NULL, '', NULL, 'Kristen Protestan', 1, 'Kawin', NULL, NULL, NULL, NULL, '2016-05-16 13:37:37', 1);
-- --------------------------------------------------------
--
-- Table structure for table `provinsi`
--
CREATE TABLE `provinsi` (
`id` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`alamat_kantor` varchar(255) NOT NULL,
`id_pengurus` varchar(16) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `provinsi`
--
INSERT INTO `provinsi` (`id`, `nama`, `alamat_kantor`, `id_pengurus`, `created_at`, `updated_at`, `status`) VALUES
(32, 'Jawa Barat', 'JL. DIPONEGORO NO. 22 BANDUNG', '3573041003950011', '2016-04-04 16:49:43', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `rt`
--
CREATE TABLE `rt` (
`id` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`alamat_kantor` varchar(255) NOT NULL,
`id_pengurus` varchar(16) NOT NULL,
`id_rw` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `rt`
--
INSERT INTO `rt` (`id`, `nama`, `alamat_kantor`, `id_pengurus`, `id_rw`, `created_at`, `updated_at`, `status`) VALUES
(1, '001', 'Jalan CiumbuRT 121', '3573041003950011', 1, '2016-03-31 14:49:27', NULL, 1),
(2, 'Berlin', 'Ap #591-5170 Enim Street', '3573041003950011', 70, '2001-11-23 11:40:37', NULL, 1),
(3, 'Michigan', 'P.O. Box 477, 9490 Arcu Ave', '3573041003950011', 32, '2016-08-10 16:45:50', NULL, 0),
(4, 'Berlin', '692-3616 Vel Rd.', '3573041003950011', 55, '2008-03-31 11:23:34', NULL, 0),
(5, 'QLD', '6034 Placerat, St.', '3573041003950011', 67, '2006-11-05 16:58:50', NULL, 1),
(6, 'C', 'P.O. Box 366, 7860 Erat. Rd.', '3573041003950011', 12, '2004-07-18 08:52:06', NULL, 1),
(7, 'Los Lagos', '205-3353 Curabitur Av.', '3573041003950011', 59, '2007-05-24 19:01:20', NULL, 0),
(8, 'British Columbia', '4313 Eu St.', '3573041003950011', 30, '2014-02-09 19:32:55', NULL, 0),
(9, 'Northwest Territories', 'Ap #569-7072 A, Av.', '3573041003950011', 6, '2014-04-28 01:24:15', NULL, 1),
(10, 'Noord Holland', 'P.O. Box 584, 5753 Luctus Street', '3573041003950011', 19, '2012-01-27 20:46:41', NULL, 1),
(11, 'Paraíba', '810-2857 Urna, Rd.', '3573041003950011', 2, '2004-01-12 09:44:35', NULL, 0),
(12, 'NSW', '3660 Nullam Road', '3573041003950011', 12, '2008-01-07 06:55:29', NULL, 0),
(13, 'Wie', '5243 Pede. Street', '3573041003950011', 33, '2002-04-13 07:40:47', NULL, 0),
(14, 'HI', '276-8414 Egestas. Ave', '3573041003950011', 47, '2005-05-09 14:34:14', NULL, 1),
(15, 'North Island', 'P.O. Box 235, 5289 Nam Avenue', '3573041003950011', 11, '2002-07-04 14:48:56', NULL, 1),
(16, 'ON', '138-2544 Faucibus Road', '3573041003950011', 9, '2000-08-04 10:21:28', NULL, 0),
(17, 'South Island', 'Ap #656-561 Dui Street', '3573041003950011', 23, '2011-07-17 13:07:54', NULL, 0),
(18, 'MA', '7057 Magna. Rd.', '3573041003950011', 84, '2000-08-23 10:04:49', NULL, 1),
(19, 'Wie', '2807 Donec St.', '3573041003950011', 50, '2010-10-18 00:38:49', NULL, 0),
(20, 'Ontario', 'P.O. Box 359, 1036 Amet Rd.', '3573041003950011', 67, '2001-05-09 19:56:11', NULL, 1),
(21, 'NI', 'P.O. Box 161, 1414 A, Road', '3573041003950011', 100, '2004-06-12 19:16:37', NULL, 1),
(22, 'SJ', 'P.O. Box 882, 6991 Cras Street', '3573041003950011', 20, '2002-11-16 18:16:31', NULL, 1),
(23, 'Sicilia', '1578 Orci Avenue', '3573041003950011', 8, '2015-02-15 01:11:07', NULL, 1),
(24, 'OK', '729-3724 Euismod Ave', '3573041003950011', 65, '2014-12-25 09:16:09', NULL, 1),
(25, 'KS', 'Ap #103-3039 Ut Street', '3573041003950011', 77, '2009-03-16 02:47:13', NULL, 1),
(26, 'NE', '912-6398 Rutrum Rd.', '3573041003950011', 41, '2004-12-14 14:54:16', NULL, 1),
(27, 'N.', '1773 Feugiat Ave', '3573041003950011', 85, '2015-07-14 22:19:12', NULL, 0),
(28, 'Zachodniopomorskie', 'Ap #447-5800 Vel Ave', '3573041003950011', 71, '2007-07-12 15:07:20', NULL, 0),
(29, 'Campania', 'P.O. Box 627, 2974 Augue Rd.', '3573041003950011', 18, '2007-10-04 22:22:41', NULL, 0),
(30, 'Metropolitana de Santiago', '3055 Mollis. St.', '3573041003950011', 26, '2008-11-06 13:34:44', NULL, 0),
(31, 'Comunitat Valenciana', 'P.O. Box 656, 816 Magna St.', '3573041003950011', 27, '2002-12-08 11:09:18', NULL, 0),
(32, 'U.', '3307 Cum Street', '3573041003950011', 22, '2015-09-26 21:06:39', NULL, 0),
(33, 'Orkney', 'P.O. Box 717, 932 Nisl Avenue', '3573041003950011', 36, '2005-12-27 05:53:14', NULL, 0),
(34, 'BE', 'P.O. Box 250, 7848 Aliquet Road', '3573041003950011', 38, '2013-04-29 08:35:13', NULL, 1),
(35, 'RF', '427-4060 Nascetur Ave', '3573041003950011', 39, '2010-10-23 22:46:22', NULL, 0),
(36, 'Guanacaste', '663-7005 Pellentesque Road', '3573041003950011', 57, '2005-08-05 11:49:21', NULL, 0),
(37, 'Bahia', 'Ap #294-6150 Urna. Rd.', '3573041003950011', 14, '2012-01-18 09:59:10', NULL, 1),
(38, 'Quebec', 'P.O. Box 850, 4164 Magna Ave', '3573041003950011', 76, '2007-08-08 17:32:15', NULL, 1),
(39, 'Bahia', '1655 Magna. Avenue', '3573041003950011', 79, '2007-04-05 03:23:42', NULL, 1),
(40, 'QC', 'Ap #708-3207 Vitae Street', '3573041003950011', 23, '2009-07-17 04:13:07', NULL, 0),
(41, 'Gl', '2575 Eu, St.', '3573041003950011', 4, '2016-09-29 06:11:25', NULL, 0),
(42, 'AB', '670-5916 Nec, Street', '3573041003950011', 71, '2006-11-05 15:02:46', NULL, 1),
(43, 'North Rhine-Westphalia', 'Ap #576-4661 Molestie St.', '3573041003950011', 100, '2002-06-26 02:52:26', NULL, 0),
(44, 'Warmi?sko-mazurskie', '477-8315 Eu Rd.', '3573041003950011', 58, '2003-08-28 03:01:27', NULL, 0),
(45, 'Alajuela', '6805 Vel St.', '3573041003950011', 5, '2004-08-14 19:31:01', NULL, 0),
(46, 'Ontario', 'Ap #102-7447 Lacus. Ave', '3573041003950011', 73, '2002-05-13 09:37:04', NULL, 0),
(47, 'VIC', 'Ap #760-4435 Mauris Rd.', '3573041003950011', 62, '2013-08-05 23:16:20', NULL, 1),
(48, 'Kocaeli', 'Ap #793-3336 Amet Avenue', '3573041003950011', 93, '2007-07-13 09:46:39', NULL, 0),
(49, 'Catalunya', 'Ap #611-9025 Tellus Ave', '3573041003950011', 48, '2003-08-19 06:43:24', NULL, 0),
(50, 'CE', 'Ap #338-6529 Magna, Rd.', '3573041003950011', 53, '2010-12-11 11:43:07', NULL, 1),
(51, 'RJ', 'Ap #351-4173 Pulvinar St.', '3573041003950011', 61, '2012-08-03 00:58:53', NULL, 1),
(52, 'South Island', '664-4473 A, St.', '3573041003950011', 67, '2006-05-08 10:09:53', NULL, 1),
(53, 'Noord Holland', 'P.O. Box 996, 2069 Aliquam St.', '3573041003950011', 43, '2007-03-11 17:30:28', NULL, 1),
(54, 'Istanbul', 'Ap #950-8037 Molestie. Road', '3573041003950011', 20, '2014-03-02 03:57:42', NULL, 1),
(55, 'Colorado', '979-6800 Scelerisque Avenue', '3573041003950011', 43, '2010-11-05 11:27:55', NULL, 0),
(56, 'Alberta', '812-900 Curae; St.', '3573041003950011', 13, '2004-04-06 15:43:27', NULL, 0),
(57, 'Ontario', '427-9275 Et Street', '3573041003950011', 99, '2000-08-14 20:06:06', NULL, 0),
(58, 'BE', 'Ap #764-9591 Non Ave', '3573041003950011', 53, '2008-06-10 05:46:46', NULL, 0),
(59, 'Ist', '7702 Diam Ave', '3573041003950011', 96, '2012-08-03 23:23:36', NULL, 1),
(60, 'Berlin', '3923 Justo. Rd.', '3573041003950011', 27, '2006-05-09 14:13:32', NULL, 1),
(61, 'Stockholms län', 'P.O. Box 839, 7175 Arcu Street', '3573041003950011', 28, '2011-06-19 12:05:08', NULL, 0),
(62, 'RJ', '5877 Eu Road', '3573041003950011', 57, '2000-12-08 04:30:33', NULL, 0),
(63, 'UP', '8443 Est Road', '3573041003950011', 61, '2005-12-02 09:29:46', NULL, 0),
(64, 'UT', 'P.O. Box 958, 7806 Eleifend Street', '3573041003950011', 11, '2006-06-20 04:37:55', NULL, 1),
(65, 'Veneto', 'P.O. Box 822, 6888 Adipiscing Av.', '3573041003950011', 10, '2013-08-01 14:38:01', NULL, 1),
(66, 'HB', 'Ap #707-7257 Mauris Rd.', '3573041003950011', 44, '2013-08-30 22:19:48', NULL, 1),
(67, 'Kujawsko-pomorskie', 'P.O. Box 357, 8046 Adipiscing St.', '3573041003950011', 67, '2000-04-28 00:00:24', NULL, 0),
(68, 'W', '637-6536 Tellus Rd.', '3573041003950011', 75, '2011-02-25 13:31:43', NULL, 1),
(69, 'Denbighshire', '1098 A St.', '3573041003950011', 67, '2004-03-07 12:31:12', NULL, 0),
(70, 'Victoria', '2367 Donec St.', '3573041003950011', 33, '2001-02-04 21:07:46', NULL, 0),
(71, 'NI', '1919 Arcu St.', '3573041003950011', 95, '2013-02-02 16:12:55', NULL, 0),
(72, 'WA', 'P.O. Box 139, 3376 Augue Rd.', '3573041003950011', 40, '2005-03-24 21:54:01', NULL, 0),
(73, 'Lombardia', 'Ap #279-1232 Rutrum St.', '3573041003950011', 17, '2011-11-15 22:14:39', NULL, 0),
(74, 'Castilla y León', '1263 Fusce Rd.', '3573041003950011', 91, '2013-11-14 07:32:32', NULL, 0),
(75, 'SIC', 'Ap #810-5168 Turpis. Avenue', '3573041003950011', 62, '2009-09-07 07:35:16', NULL, 1),
(76, 'Munster', '4716 Sodales. Ave', '3573041003950011', 70, '2000-10-02 03:19:50', NULL, 1),
(77, 'Valparaíso', '890 Luctus, Rd.', '3573041003950011', 77, '2010-10-07 13:36:24', NULL, 1),
(78, 'MAR', '3685 Et St.', '3573041003950011', 9, '2006-08-16 01:09:07', NULL, 0),
(79, 'SK', '4137 Est Avenue', '3573041003950011', 90, '2006-07-09 09:00:30', NULL, 1),
(80, 'NI', 'P.O. Box 676, 4643 Et St.', '3573041003950011', 45, '2012-04-04 03:51:26', NULL, 0),
(81, 'LA', 'P.O. Box 674, 532 Sodales St.', '3573041003950011', 20, '2009-05-31 05:42:32', NULL, 1),
(82, 'C', '185-6756 Lacinia Street', '3573041003950011', 95, '2014-06-22 17:23:13', NULL, 0),
(83, 'New South Wales', 'Ap #388-2093 Hendrerit St.', '3573041003950011', 2, '2010-08-09 08:02:51', NULL, 0),
(84, 'LAZ', 'Ap #294-2642 Mollis St.', '3573041003950011', 95, '2009-08-21 23:55:58', NULL, 0),
(85, 'MA', 'Ap #862-680 Eu Rd.', '3573041003950011', 89, '2015-05-27 12:04:09', NULL, 1),
(86, 'MP', 'Ap #946-7551 Justo St.', '3573041003950011', 25, '2000-05-25 06:42:11', NULL, 1),
(87, 'Ontario', '422-978 Dictum Av.', '3573041003950011', 44, '2003-11-15 07:21:50', NULL, 1),
(88, 'Veneto', '9361 Tincidunt Road', '3573041003950011', 56, '2006-11-02 21:17:44', NULL, 1),
(89, 'QLD', '892-7015 Nibh. St.', '3573041003950011', 59, '2001-12-04 15:20:58', NULL, 1),
(90, 'Metropolitana de Santiago', '881-3906 Turpis. Ave', '3573041003950011', 48, '2012-03-28 03:55:07', NULL, 0),
(91, 'Cartago', '798-3119 A, Ave', '3573041003950011', 66, '2008-03-22 09:41:20', NULL, 1),
(92, 'BE', '8397 Eget, Ave', '3573041003950011', 32, '2008-04-18 09:40:38', NULL, 0),
(93, 'Massachusetts', '380-3362 Fringilla Av.', '3573041003950011', 11, '2000-04-26 22:50:51', NULL, 1),
(94, 'Odisha', 'Ap #620-4449 Convallis, Avenue', '3573041003950011', 36, '2014-07-21 23:56:48', NULL, 1),
(95, 'Berlin', '929-1665 Aliquet Road', '3573041003950011', 37, '2004-08-11 06:38:14', NULL, 1),
(96, 'F', 'Ap #469-8195 Vitae Av.', '3573041003950011', 13, '2015-11-25 20:44:42', NULL, 0),
(97, 'IL', '533-6299 Sociis Rd.', '3573041003950011', 32, '2001-07-17 01:46:21', NULL, 1),
(98, 'Minas Gerais', '798-2526 Id Rd.', '3573041003950011', 41, '2014-09-14 04:39:54', NULL, 0),
(99, 'E', 'Ap #759-6247 Enim. Ave', '3573041003950011', 51, '2003-11-22 15:20:26', NULL, 0),
(100, 'Toscana', 'Ap #486-4535 Sem Rd.', '3573041003950011', 86, '2006-02-19 23:42:58', NULL, 0),
(101, 'L', '940 Elit, Rd.', '3573041003950011', 5, '2010-12-26 19:54:31', NULL, 0);
-- --------------------------------------------------------
--
-- Table structure for table `rumpun`
--
CREATE TABLE `rumpun` (
`id` varchar(20) NOT NULL,
`nama` varchar(100) NOT NULL,
`nomor_urut` varchar(25) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `rumpun`
--
INSERT INTO `rumpun` (`id`, `nama`, `nomor_urut`, `created_at`, `updated_at`, `status`) VALUES
('123', 'Kekomputeran', '12', '2016-04-04 19:58:02', NULL, 1),
('124', 'Ilmu Hayat', '12', '2016-04-04 19:58:44', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `rw`
--
CREATE TABLE `rw` (
`id` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`alamat_kantor` varchar(255) NOT NULL,
`id_pengurus` varchar(16) NOT NULL,
`id_kelurahan` int(11) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `rw`
--
INSERT INTO `rw` (`id`, `nama`, `alamat_kantor`, `id_pengurus`, `id_kelurahan`, `created_at`, `updated_at`, `status`) VALUES
(1, '', '', '3573041003950011', 1, '2016-03-31 14:49:23', NULL, 1),
(2, 'Vienna', 'P.O. Box 897, 5105 Non Ave', '3573041003950011', 90, '2015-03-08 20:14:59', NULL, 1),
(3, 'Ontario', 'P.O. Box 736, 1962 Posuere, Avenue', '3573041003950011', 65, '2010-08-13 02:07:46', NULL, 1),
(4, 'CA', 'P.O. Box 730, 7908 Cursus Rd.', '3573041003950011', 52, '2004-05-12 10:24:41', NULL, 0),
(5, 'U', 'P.O. Box 515, 7385 Lorem, Ave', '3573041003950011', 79, '2008-03-01 15:38:51', NULL, 0),
(6, 'LD', 'Ap #299-2770 Mollis. Rd.', '3573041003950011', 22, '2008-02-20 14:24:23', NULL, 0),
(7, 'San José', '6507 Ornare, Rd.', '3573041003950011', 81, '2007-06-30 18:04:26', NULL, 1),
(8, 'RM', 'Ap #581-9260 Praesent Avenue', '3573041003950011', 59, '2012-09-14 01:09:59', NULL, 1),
(9, 'HB', '303-5253 Posuere Ave', '3573041003950011', 19, '2012-04-06 00:50:04', NULL, 0),
(10, 'Wie', 'Ap #455-4028 Cum Ave', '3573041003950011', 26, '2015-07-21 14:06:51', NULL, 0),
(11, 'AR', '4670 Ullamcorper Road', '3573041003950011', 12, '2013-12-02 10:53:04', NULL, 1),
(12, 'Ist', 'Ap #111-1842 Mauris, Rd.', '3573041003950011', 84, '2003-03-10 06:34:01', NULL, 1),
(13, 'E', '9442 Nulla. St.', '3573041003950011', 92, '2008-06-06 00:20:51', NULL, 0),
(14, 'JI', '5391 Luctus Rd.', '3573041003950011', 52, '2007-09-04 08:48:40', NULL, 1),
(15, 'PE', 'P.O. Box 545, 2798 Convallis, Ave', '3573041003950011', 2, '2013-09-15 10:41:26', NULL, 1),
(16, 'Ontario', 'Ap #547-4757 Semper Ave', '3573041003950011', 98, '2009-01-30 17:38:08', NULL, 1),
(17, 'Berlin', '807-7746 Dolor Street', '3573041003950011', 89, '2016-03-17 13:15:58', NULL, 0),
(18, 'LO', '284-5846 Torquent Street', '3573041003950011', 75, '2000-11-28 17:10:30', NULL, 1),
(19, 'Limburg', '8978 Ut Av.', '3573041003950011', 97, '2003-03-16 18:04:10', NULL, 0),
(20, 'North Island', '8705 Metus. St.', '3573041003950011', 39, '2001-01-12 01:42:08', NULL, 1),
(21, 'PM', '516-1370 Cras Ave', '3573041003950011', 72, '2008-02-24 21:03:23', NULL, 0),
(22, 'O', '394-9028 Proin Street', '3573041003950011', 63, '2004-11-11 04:14:23', NULL, 0),
(23, 'Hat', '4476 Ridiculus Av.', '3573041003950011', 69, '2014-10-06 13:09:40', NULL, 1),
(24, 'Bremen', '693-8363 Quisque St.', '3573041003950011', 74, '2009-10-16 21:38:37', NULL, 1),
(25, 'RJ', '978-6845 Vestibulum St.', '3573041003950011', 49, '2002-04-09 20:36:14', NULL, 0),
(26, 'Dorset', 'Ap #210-7217 Ornare Road', '3573041003950011', 74, '2007-07-24 01:36:37', NULL, 0),
(27, 'C', 'Ap #216-7456 Nec St.', '3573041003950011', 18, '2007-06-23 03:20:44', NULL, 1),
(28, 'WA', 'P.O. Box 242, 689 Mus. Avenue', '3573041003950011', 17, '2004-08-04 15:18:39', NULL, 0),
(29, 'NA', 'Ap #940-7986 Mi. Street', '3573041003950011', 22, '2004-04-21 13:43:22', NULL, 1),
(30, 'KN', '854-6453 Eu Rd.', '3573041003950011', 51, '2000-07-20 06:13:42', NULL, 1),
(31, 'Stockholms län', '743-5046 Euismod Ave', '3573041003950011', 21, '2005-07-21 05:11:41', NULL, 1),
(32, 'MP', '367-8865 Ac St.', '3573041003950011', 37, '2003-05-30 09:00:40', NULL, 0),
(33, 'LA', 'Ap #923-2166 Felis. Road', '3573041003950011', 40, '2002-08-17 11:23:17', NULL, 0),
(34, 'New South Wales', 'Ap #851-1263 At St.', '3573041003950011', 82, '2014-06-26 10:45:36', NULL, 1),
(35, 'Hamburg', '942-8080 Euismod St.', '3573041003950011', 59, '2006-05-26 11:57:27', NULL, 1),
(36, 'Akwa Ibom', 'Ap #485-456 Dictum. Road', '3573041003950011', 37, '2015-04-18 01:04:50', NULL, 1),
(37, 'La Rioja', '8467 Nunc St.', '3573041003950011', 36, '2009-07-01 12:15:16', NULL, 1),
(38, 'Rio Grande do Sul', '420-9280 Magna, St.', '3573041003950011', 89, '2015-06-30 05:19:09', NULL, 1),
(39, 'Ontario', '798 Facilisi. Avenue', '3573041003950011', 62, '2003-04-29 16:36:42', NULL, 0),
(40, 'Podkarpackie', '396 Quis, Av.', '3573041003950011', 21, '2007-01-03 00:15:36', NULL, 0),
(41, 'LU', '461-7429 Sed Road', '3573041003950011', 94, '2007-12-12 14:55:03', NULL, 0),
(42, 'Istanbul', '4658 Dictum Av.', '3573041003950011', 17, '2002-09-02 12:49:38', NULL, 1),
(43, 'Wyoming', 'Ap #781-7810 Tincidunt. Road', '3573041003950011', 74, '2011-09-15 14:41:00', NULL, 1),
(44, 'North Island', '8072 Facilisis Street', '3573041003950011', 20, '2016-07-30 15:59:48', NULL, 0),
(45, 'Connacht', '111-771 Vivamus Road', '3573041003950011', 73, '2008-02-17 04:50:23', NULL, 0),
(46, 'LU', '753-8213 Hendrerit Avenue', '3573041003950011', 4, '2001-10-24 03:35:43', NULL, 1),
(47, 'WY', 'P.O. Box 255, 8026 Quis Rd.', '3573041003950011', 56, '2005-11-21 00:16:24', NULL, 1),
(48, 'Goiás', '9492 Donec Ave', '3573041003950011', 7, '2016-12-26 01:42:04', NULL, 1),
(49, 'Wie', '764 Nisi St.', '3573041003950011', 56, '2014-12-20 02:12:38', NULL, 1),
(50, 'Northwest Territories', '9067 Vitae, Street', '3573041003950011', 89, '2014-11-10 08:28:44', NULL, 1),
(51, 'Colorado', 'Ap #323-2027 Penatibus Av.', '3573041003950011', 14, '2014-09-13 23:27:50', NULL, 1),
(52, 'HH', 'Ap #245-6697 Interdum Avenue', '3573041003950011', 21, '2008-12-06 15:34:00', NULL, 0),
(53, 'NI', 'P.O. Box 200, 2891 Lobortis St.', '3573041003950011', 70, '2013-01-01 10:39:07', NULL, 1),
(54, 'Vienna', 'Ap #847-7439 Proin Road', '3573041003950011', 33, '2017-03-22 12:20:12', NULL, 0),
(55, 'VB', '1158 Risus. Rd.', '3573041003950011', 6, '2016-02-29 08:06:10', NULL, 1),
(56, 'CA', 'Ap #355-4930 Magna. Ave', '3573041003950011', 85, '2003-09-30 15:55:59', NULL, 1),
(57, 'PA', '2944 Sed Street', '3573041003950011', 63, '2002-12-24 20:21:13', NULL, 1),
(58, 'GA', 'P.O. Box 210, 1764 Sed Avenue', '3573041003950011', 30, '2001-03-24 22:39:15', NULL, 0),
(59, 'QC', 'Ap #552-8831 Cursus Rd.', '3573041003950011', 101, '2014-08-24 07:56:20', NULL, 1),
(60, 'NI', 'Ap #554-9518 Scelerisque Rd.', '3573041003950011', 10, '2011-06-23 02:31:17', NULL, 0),
(61, 'New South Wales', '7470 Consectetuer Ave', '3573041003950011', 30, '2012-10-12 00:58:19', NULL, 1),
(62, 'L', 'Ap #368-271 Enim. Ave', '3573041003950011', 18, '2016-09-13 17:26:50', NULL, 0),
(63, 'RS', 'P.O. Box 477, 9574 Nullam Rd.', '3573041003950011', 72, '2013-04-27 03:50:56', NULL, 0),
(64, 'Himachal Pradesh', '526-7513 Nunc Street', '3573041003950011', 8, '2016-03-10 05:24:56', NULL, 1),
(65, 'Mazowieckie', '596-3970 Tellus. Ave', '3573041003950011', 49, '2012-02-09 10:58:17', NULL, 1),
(66, 'Ontario', '118-7607 Tellus Road', '3573041003950011', 40, '2016-04-15 03:33:40', NULL, 1),
(67, 'Gl', 'P.O. Box 429, 9521 Rutrum St.', '3573041003950011', 41, '2004-03-23 01:51:13', NULL, 1),
(68, 'Jharkhand', '715-577 Ac Avenue', '3573041003950011', 31, '2004-12-05 17:48:51', NULL, 1),
(69, 'Queensland', '761-5336 Erat. Ave', '3573041003950011', 66, '2004-12-21 00:34:04', NULL, 0),
(70, 'HB', '832-3366 Blandit Av.', '3573041003950011', 4, '2009-01-07 13:53:29', NULL, 0),
(71, 'Wyoming', '317-6002 Eget St.', '3573041003950011', 49, '2001-02-15 20:52:31', NULL, 0),
(72, 'MP', '1017 Magnis Av.', '3573041003950011', 71, '2015-02-01 04:02:59', NULL, 1),
(73, 'Ulster', 'P.O. Box 533, 840 Vivamus St.', '3573041003950011', 55, '2002-12-31 17:26:51', NULL, 0),
(74, 'Castilla - La Mancha', 'P.O. Box 439, 1459 Duis Ave', '3573041003950011', 46, '2006-04-24 19:22:07', NULL, 1),
(75, 'OR', 'P.O. Box 245, 8782 Cum Ave', '3573041003950011', 36, '2016-07-05 00:44:19', NULL, 1),
(76, 'PM', '7815 Vivamus Ave', '3573041003950011', 89, '2008-02-02 04:46:45', NULL, 1),
(77, 'CA', '298-2990 Molestie. St.', '3573041003950011', 43, '2007-03-24 13:58:29', NULL, 0),
(78, 'Ulster', 'Ap #385-8756 Est. Rd.', '3573041003950011', 80, '2015-10-10 16:22:12', NULL, 1),
(79, 'MI', '8148 Feugiat. Road', '3573041003950011', 51, '2010-01-17 16:18:16', NULL, 0),
(80, 'Paraná', 'P.O. Box 315, 8006 Est Street', '3573041003950011', 73, '2003-08-13 18:49:32', NULL, 0),
(81, 'A', 'P.O. Box 324, 1288 Feugiat. Road', '3573041003950011', 84, '2001-12-04 20:44:52', NULL, 0),
(82, 'BE', 'P.O. Box 529, 722 Eget Rd.', '3573041003950011', 73, '2001-12-30 18:07:52', NULL, 1),
(83, 'Queensland', 'Ap #322-6246 Elementum Street', '3573041003950011', 39, '2015-11-13 09:04:18', NULL, 1),
(84, 'Languedoc-Roussillon', '9906 Sit Street', '3573041003950011', 67, '2009-03-31 00:13:25', NULL, 1),
(85, 'North Island', 'P.O. Box 389, 6588 Vulputate, St.', '3573041003950011', 46, '2015-07-07 01:55:56', NULL, 1),
(86, 'WI', 'P.O. Box 299, 7348 Tempus St.', '3573041003950011', 6, '2007-06-04 04:55:50', NULL, 1),
(87, 'NA', 'P.O. Box 385, 5442 Ac Rd.', '3573041003950011', 62, '2011-11-13 00:02:20', NULL, 1),
(88, 'CA', 'Ap #883-8244 Tristique Avenue', '3573041003950011', 43, '2010-11-09 15:07:46', NULL, 1),
(89, 'North Island', 'P.O. Box 160, 3450 Ipsum St.', '3573041003950011', 13, '2010-10-01 03:59:24', NULL, 0),
(90, 'MP', '4419 Adipiscing Street', '3573041003950011', 98, '2014-10-24 17:54:59', NULL, 0),
(91, 'NI', '604-848 Vel Avenue', '3573041003950011', 42, '2012-07-04 18:51:41', NULL, 0),
(92, 'E', '9087 Et Rd.', '3573041003950011', 87, '2011-03-06 03:45:16', NULL, 1),
(93, 'UP', '939-9960 Interdum. St.', '3573041003950011', 16, '2015-06-14 01:14:11', NULL, 1),
(94, 'Östergötlands län', '6214 Blandit Rd.', '3573041003950011', 9, '2008-03-16 22:27:35', NULL, 0),
(95, 'WV', '4501 Nascetur Road', '3573041003950011', 62, '2008-05-29 00:20:23', NULL, 0),
(96, 'RM', 'P.O. Box 243, 7649 Tempor Avenue', '3573041003950011', 1, '2001-11-20 17:12:24', NULL, 0),
(97, 'WI', '639-5687 Augue Rd.', '3573041003950011', 101, '2009-11-06 17:42:43', NULL, 0),
(98, 'Anambra', 'P.O. Box 697, 2178 Turpis Road', '3573041003950011', 39, '2010-05-30 15:58:30', NULL, 1),
(99, 'Michigan', 'P.O. Box 476, 4116 Justo St.', '3573041003950011', 84, '2014-05-16 09:39:39', NULL, 1),
(100, 'C', 'Ap #665-4733 Sed Rd.', '3573041003950011', 92, '2006-12-05 13:05:16', NULL, 1),
(101, 'Centre', 'P.O. Box 610, 799 Mauris Avenue', '3573041003950011', 37, '2015-04-20 03:03:07', NULL, 0);
-- --------------------------------------------------------
--
-- Table structure for table `skpd`
--
CREATE TABLE `skpd` (
`id` varchar(20) NOT NULL,
`id_jabatan` varchar(20) NOT NULL,
`nama` varchar(25) NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `jabatan`
--
ALTER TABLE `jabatan`
ADD PRIMARY KEY (`id`),
ADD KEY `id_rumpun` (`id_rumpun`);
--
-- Indexes for table `kecamatan`
--
ALTER TABLE `kecamatan`
ADD PRIMARY KEY (`id`),
ADD KEY `id_kota` (`id_kota`),
ADD KEY `kecamatan_ibfk_2` (`id_pengurus`);
--
-- Indexes for table `keluarga`
--
ALTER TABLE `keluarga`
ADD PRIMARY KEY (`id`),
ADD KEY `id_rt` (`id_rt`);
--
-- Indexes for table `kelurahan`
--
ALTER TABLE `kelurahan`
ADD PRIMARY KEY (`id`),
ADD KEY `id_kecamatan` (`id_kecamatan`),
ADD KEY `kelurahan_ibfk_2` (`id_pengurus`);
--
-- Indexes for table `kota`
--
ALTER TABLE `kota`
ADD PRIMARY KEY (`id`),
ADD KEY `id_provinsi` (`id_provinsi`),
ADD KEY `kota_ibfk_2` (`id_pengurus`);
--
-- Indexes for table `pegawai`
--
ALTER TABLE `pegawai`
ADD PRIMARY KEY (`nip`),
ADD KEY `id_jabatan` (`id_jabatan`),
ADD KEY `id_atasan` (`id_atasan`),
ADD KEY `id_penduduk` (`id_penduduk`);
--
-- Indexes for table `penduduk`
--
ALTER TABLE `penduduk`
ADD PRIMARY KEY (`id`),
ADD KEY `tempat_lahir` (`tempat_lahir`),
ADD KEY `id_keluarga` (`id_keluarga`),
ADD KEY `id_ayah` (`id_ayah`),
ADD KEY `id_ibu` (`id_ibu`);
--
-- Indexes for table `provinsi`
--
ALTER TABLE `provinsi`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `rt`
--
ALTER TABLE `rt`
ADD PRIMARY KEY (`id`),
ADD KEY `id_rw` (`id_rw`),
ADD KEY `rt_ibfk_2` (`id_pengurus`);
--
-- Indexes for table `rumpun`
--
ALTER TABLE `rumpun`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `rw`
--
ALTER TABLE `rw`
ADD PRIMARY KEY (`id`),
ADD KEY `id_kelurahan` (`id_kelurahan`),
ADD KEY `rw_ibfk_2` (`id_pengurus`);
--
-- Indexes for table `skpd`
--
ALTER TABLE `skpd`
ADD PRIMARY KEY (`id`),
ADD KEY `id_jabatan` (`id_jabatan`);
--
-- Constraints for dumped tables
--
--
-- Constraints for table `jabatan`
--
ALTER TABLE `jabatan`
ADD CONSTRAINT `jabatan_ibfk_1` FOREIGN KEY (`id_rumpun`) REFERENCES `rumpun` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `kecamatan`
--
ALTER TABLE `kecamatan`
ADD CONSTRAINT `kecamatan_ibfk_1` FOREIGN KEY (`id_kota`) REFERENCES `kota` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `kecamatan_ibfk_2` FOREIGN KEY (`id_pengurus`) REFERENCES `penduduk` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `keluarga`
--
ALTER TABLE `keluarga`
ADD CONSTRAINT `keluarga_ibfk_1` FOREIGN KEY (`id_rt`) REFERENCES `rt` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `kelurahan`
--
ALTER TABLE `kelurahan`
ADD CONSTRAINT `kelurahan_ibfk_1` FOREIGN KEY (`id_kecamatan`) REFERENCES `kecamatan` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `kelurahan_ibfk_2` FOREIGN KEY (`id_pengurus`) REFERENCES `penduduk` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `kota`
--
ALTER TABLE `kota`
ADD CONSTRAINT `kota_ibfk_1` FOREIGN KEY (`id_provinsi`) REFERENCES `provinsi` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `kota_ibfk_2` FOREIGN KEY (`id_pengurus`) REFERENCES `penduduk` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `pegawai`
--
ALTER TABLE `pegawai`
ADD CONSTRAINT `pegawai_ibfk_1` FOREIGN KEY (`id_penduduk`) REFERENCES `penduduk` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `pegawai_ibfk_2` FOREIGN KEY (`id_atasan`) REFERENCES `pegawai` (`nip`) ON UPDATE CASCADE,
ADD CONSTRAINT `pegawai_ibfk_3` FOREIGN KEY (`id_jabatan`) REFERENCES `jabatan` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `penduduk`
--
ALTER TABLE `penduduk`
ADD CONSTRAINT `penduduk_ibfk_1` FOREIGN KEY (`tempat_lahir`) REFERENCES `kota` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `penduduk_ibfk_2` FOREIGN KEY (`id_ayah`) REFERENCES `penduduk` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `penduduk_ibfk_3` FOREIGN KEY (`id_ibu`) REFERENCES `penduduk` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `penduduk_ibfk_4` FOREIGN KEY (`id_keluarga`) REFERENCES `keluarga` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `rt`
--
ALTER TABLE `rt`
ADD CONSTRAINT `rt_ibfk_1` FOREIGN KEY (`id_rw`) REFERENCES `rw` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `rt_ibfk_2` FOREIGN KEY (`id_pengurus`) REFERENCES `penduduk` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `rw`
--
ALTER TABLE `rw`
ADD CONSTRAINT `rw_ibfk_1` FOREIGN KEY (`id_kelurahan`) REFERENCES `kelurahan` (`id`) ON UPDATE CASCADE,
ADD CONSTRAINT `rw_ibfk_2` FOREIGN KEY (`id_pengurus`) REFERENCES `penduduk` (`id`) ON UPDATE CASCADE;
--
-- Constraints for table `skpd`
--
ALTER TABLE `skpd`
ADD CONSTRAINT `skpd_ibfk_1` FOREIGN KEY (`id_jabatan`) REFERENCES `jabatan` (`id`) ON UPDATE CASCADE;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;