fhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhd dfhdfhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhdfh
| DIR:/home/u1105814/public_html/tscore.id/demo/ |
| Current File : /home/u1105814/public_html/tscore.id/demo/distributor.php |
<!DOCTYPE html>
<html>
<head>
<?php include 'attribute/attribute_head.php';?>
</head>
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<?php include 'attribute/attribute_header.php';?>
<?php include 'attribute/attribute_sidebar.php';?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
E-Arsip
<small>Distirbutor</small>
</h1>
<ol class="breadcrumb">
<li>
<a href="index.html"><i class="fa fa-dashboard"></i> Home</a>
</li>
<li class="active">Distributor</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<!-- Main row -->
<div class="row">
<!-- Left col -->
<section class="col-lg-6 connectedSortable">
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">Tambah Distributor</h3>
</div>
<!-- /.box-header -->
<!-- form start -->
<form class="form-horizontal" action="controller/controller_distributor.php" method="post"
id="multiInputForm">
<div class="box-body">
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Nama
Distributor</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="dis_nama" name="dis_nama"
placeholder="Masukkan Nama Distributor">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Kontak</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="dis_no" name="dis_no"
placeholder="Masukkan Kontak">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Alamat</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="dis_alt" name="dis_alt"
placeholder="Masukkan Alamat">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Kelurahan</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="dis_kel" name="dis_kel"
placeholder="Masukkan Keluarahan">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Kecamatan</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="dis_kec" name="dis_kec"
placeholder="Masukkan Kecamatan">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Kota</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="dis_kota" name="dis_kota"
placeholder="Masukkan Kota">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Provinsi</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="dis_prov" name="dis_prov"
placeholder="Masukkan Provinsi">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Deskripsi</label>
<div class="col-sm-10">
<textarea class="form-control" id="deskripsi" name="dis_des"
rows="4"></textarea>
</div>
</div>
<div class="box-footer">
<button type="submit" name="submit" value="submit"
class="btn btn-success mb-2 pull-right">Simpan</button>
</div>
</div>
</form>
</div>
<!-- /.box -->
</section>
<!-- /.Left col -->
<section class="col-lg-6 connectedSortable">
<!-- TO DO List -->
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">Ketersediaan Komoditi</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<table id="distributorTable" class="table table-striped table-bordered"
style="width:100%">
<thead>
<tr>
<th style="width: 10px">#</th>
<th>Keluarahan</th>
<th>Ketersedian</th>
<th style="width: 40px">Presentase</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.</td>
<td>Keluarahan A</td>
<td>
<div class="progress progress-xs">
<div class="progress-bar progress-bar-danger" style="width: 55%">
</div>
</div>
</td>
<td><span class="badge bg-red">55%</span></td>
</tr>
<tr>
<td>2.</td>
<td>Keluarahan B</td>
<td>
<div class="progress progress-xs">
<div class="progress-bar progress-bar-yellow" style="width: 70%">
</div>
</div>
</td>
<td><span class="badge bg-yellow">70%</span></td>
</tr>
<tr>
<td>3.</td>
<td>Keluarahan C</td>
<td>
<div class="progress progress-xs progress-striped active">
<div class="progress-bar progress-bar-primary" style="width: 30%">
</div>
</div>
</td>
<td><span class="badge bg-light-blue">30%</span></td>
</tr>
<tr>
<td>4.</td>
<td>Keluarahan D</td>
<td>
<div class="progress progress-xs progress-striped active">
<div class="progress-bar progress-bar-success" style="width: 90%">
</div>
</div>
</td>
<td><span class="badge bg-green">90%</span></td>
</tr>
<tr>
<td>4.</td>
<td>Keluarahan E</td>
<td>
<div class="progress progress-xs progress-striped active">
<div class="progress-bar progress-bar-default" style="width: 20%">
</div>
</div>
</td>
<td><span class="badge bg-green">90%</span></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- /.box -->
</section>
<!-- /.Left col -->
</div>
<!-- /.row (main row) -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php include 'attribute/attribute_footer.php';?>
<!-- Control Sidebar -->
<?php include 'attribute/attribute_aside.php';?>
<div class="control-sidebar-bg"></div>
</div>
<?php include 'attribute/attribute_script.php';?>
</body>
</html> |