Commit f55a15ef by Palti Sinaga

profile

parent f3f2287d
...@@ -72,7 +72,9 @@ a:focus, a:hover { ...@@ -72,7 +72,9 @@ a:focus, a:hover {
/*-- //Reset-Code --*/ /*-- //Reset-Code --*/
.table thead{
background-color: #1dc8d9;
}
...@@ -415,8 +417,8 @@ ul.callbacks_tabs li { ...@@ -415,8 +417,8 @@ ul.callbacks_tabs li {
} }
.dropdown-menu > li.user-header img{ .dropdown-menu > li.user-header img{
height: 60px; height: 150px;
width: 60px; width: 150px;
} }
.dropdown-menu > .user-footer { .dropdown-menu > .user-footer {
...@@ -2008,8 +2010,9 @@ section#tables p { ...@@ -2008,8 +2010,9 @@ section#tables p {
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
font-size: 0.9em; font-size: 0.9em;
color: #999; color: #2d2d2d;
border-top: none!important; border-top: none!important;
} }
.tab-content > .active { .tab-content > .active {
......
@extends('adminlte::layouts.customers.History')
@extends('adminlte::layouts.master')
@section('main-content')
<div class="cuisines agileits w3layouts" style="padding-top: 50px; margin-top: 80px; margin-bottom: 100px;">
<div class="container">
<table class="table table-striped">
<thead>
<tr>
<th> No. </th>
<th> No. Rekening </th>
<th> Atas Nama </th>
<th> Total Pembayaran </th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>456141923</td>
<td>Palti Sinaga</td>
<td>2.400.000</td>
</tr>
<tr class="success">
<td>2</td>
<td>09179287213</td>
<td>Lestari Siregar</td>
<td>2.123.091</td>
</tr>
</tbody>
</table>
</div>
</div>
@endsection
\ No newline at end of file
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<a class="agileits w3layoutswow slideInLeft" href="{{url('editProfileCustomer/'.$data->id)}}" >Edit Profile <span class="glyphicon agileits w3layouts glyphicon-arrow-right" aria-hidden="true"></span></a> <a class="agileits w3layoutswow slideInLeft" href="{{url('editProfileCustomer/'.$data->id)}}" >Edit Profile <span class="glyphicon agileits w3layouts glyphicon-arrow-right" aria-hidden="true"></span></a>
<a class="agileits w3layoutswow slideInLeft" href="gallery.html">History <span class="glyphicon agileits w3layouts glyphicon-arrow-right" aria-hidden="true"></span></a> <a class="agileits w3layoutswow slideInLeft" href="{{url('history')}}">History <span class="glyphicon agileits w3layouts glyphicon-arrow-right" aria-hidden="true"></span></a>
</div> </div>
</div> </div>
<div class="clearfix"></div> <div class="clearfix"></div>
......
@extends('adminlte::layouts.master')
@section('main-content')
<div class="cuisines agileits w3layouts" style="padding-top: 50px; margin-top: 80px; margin-bottom: 100px;">
<div class="container">
<table class="table table-striped">
<thead>
<tr>
<th> No. </th>
<th> No. Rekening </th>
<th> Atas Nama </th>
<th> Total Pembayaran </th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>456141923</td>
<td>Palti Sinaga</td>
<td>2.400.000</td>
</tr>
<tr class="success">
<td>2</td>
<td>09179287213</td>
<td>Lestari Siregar</td>
<td>2.123.091</td>
</tr>
</tbody>
</table>
</div>
</div>
@endsection
\ No newline at end of file
...@@ -23,7 +23,9 @@ ...@@ -23,7 +23,9 @@
<input type="text" class="text wow agileits w3layouts slideInLeft" name="Name" placeholder="Jumlah Orang" required="" style="background-color: white; color: black"> <input type="text" class="text wow agileits w3layouts slideInLeft" name="Name" placeholder="Jumlah Orang" required="" style="background-color: white; color: black">
</div> </div>
<div class="col-md-3 col-sm-3 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft"> <div class="col-md-3 col-sm-3 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft">
<input type="submit" class="more_btn wow agileits w3layouts slideInLeft" value="Book Now"> <a href="{{url('history')}}" id="book" >
<input type="button" class="more_btn wow agileits w3layouts slideInLeft" value="Book Now">
</a>
</div> </div>
</form> </form>
</div> </div>
...@@ -118,7 +120,7 @@ ...@@ -118,7 +120,7 @@
$('#myModal').modal(''); $('#myModal').modal('');
</script> </script>
<script> <script>
document.querySelector('').onclick = function(){ document.getElementById('book').onclick = function(){
swal("Good job!", "You clicked the button!", "success");}; swal("Good job!", "You clicked the button!", "success");};
</script> </script>
...@@ -128,13 +130,13 @@ ...@@ -128,13 +130,13 @@
document.querySelector(' ').onclick = function(){ document.querySelector(' ').onclick = function(){
swal("Good job!", "You clicked the button!", "success");}; swal("Good job!", "You clicked the button!", "success");};
</script> </script>
@endsection
<script> <script>
document.querySelector('more_btn.input').onclick = function(){ document.querySelector('').onclick = function(){
swal({ swal({
title: "Are you sure?", title:"Are you sure?",
text: "You will not be able to recover this imaginary file!", text: "You will not be able to recover this imaginary file!",
type: "warning", type: "warning",
showCancelButton: true, showCancelButton: true,
...@@ -154,4 +156,4 @@ ...@@ -154,4 +156,4 @@
}; };
</script> </script>
@endsection
<div class="header agileits w3layouts" id="home" > <div class="header agileits w3layouts" id="home" >
<!-- Navbar --> <!-- Navbar -->
<nav class="navbar navbar-default w3l aits wow bounceInUp agileits w3layouts"> <nav class="navbar navbar-default w3l aits">
<div class="container"> <div class="container">
<div class="navbar-header agileits w3layouts"> <div class="navbar-header agileits w3layouts">
<button type="button" class="navbar-toggle agileits w3layouts collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false"> <button type="button" class="navbar-toggle agileits w3layouts collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
...@@ -37,8 +37,8 @@ ...@@ -37,8 +37,8 @@
{{--<img src="{{ Gravatar::get($user->email) }}" class="img-circle" alt="User Image" />--}} {{--<img src="{{ Gravatar::get($user->email) }}" class="img-circle" alt="User Image" />--}}
<p> <p>
<img src="img/{{ Auth::user()->foto }}" class="img-circle" alt="User Image" /> <img src="img/{{ Auth::user()->foto }}" class="img-circle" alt="User Image" />
{{ Auth::user()->name }} <!-- {{ Auth::user()->name }} -->
<small>{{ trans('adminlte_lang::message.login') }} </small> <!-- <small>{{ trans('adminlte_lang::message.login') }} </small> -->
</p> </p>
</li> </li>
<!-- Menu Body --> <!-- Menu Body -->
......
...@@ -80,9 +80,27 @@ ...@@ -80,9 +80,27 @@
<script src="{{asset('js/jquery-ui.js')}}"></script> <script src="{{asset('js/jquery-ui.js')}}"></script>
<script> <script>
$(function() { $(function() {
$( "#datepicker,#datepicker1,#datepicker2" ).datepicker(); $( "#datepicker,#datepicker1,#datepicker2" ).datepicker({minDate:0});
}); });
</script> </script>
<!-- //Date-Picker-JavaScript --> <!-- //Date-Picker-JavaScript -->
<!-- new date picker -->
<!-- <script>
$(function() {
$( "#datepicker,#datepicker1" ).datepicker({minDate:0});
$("#datepicker,#datepicker2").datepicker({
onSelect:function(date){
var date1 = $('#datepicker1').datepicker('getDate');
var date = new Date(Date.parse(date1));
date.setDate(date.getDate()+1);
var newDate = date.toDateString();
newDate = newDate(Date.parse(newDate));
$('#datepicker2').datepicker({minDate:0});
}
};)
});
</script> -->
<!-- //new date picker -->
<!-- //Custom-JavaScript-File-Links --> <!-- //Custom-JavaScript-File-Links -->
\ No newline at end of file
...@@ -27,7 +27,9 @@ Route::get('editprofiles', function(){ ...@@ -27,7 +27,9 @@ Route::get('editprofiles', function(){
}); });
//web //web
Route::get('history', function(){
return view('History');
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment