first commit
This commit is contained in:
16
resources/views/layouts/admin.blade.php
Normal file
16
resources/views/layouts/admin.blade.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
@include('partials.admin.head')
|
||||
|
||||
<body class="hold-transition {{ setting('general.admin_theme', 'skin-green-light') }} sidebar-mini fixed">
|
||||
<!-- Site wrapper -->
|
||||
<div class="wrapper">
|
||||
@include('partials.admin.header')
|
||||
|
||||
@include('partials.admin.menu')
|
||||
|
||||
@include('partials.admin.content')
|
||||
|
||||
@include('partials.admin.footer')
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
21
resources/views/layouts/auth.blade.php
Normal file
21
resources/views/layouts/auth.blade.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<html>
|
||||
@include('partials.auth.head')
|
||||
|
||||
<body class="hold-transition login-page">
|
||||
<div class="login-box">
|
||||
<div class="login-logo">
|
||||
<img src="{{ asset('public/img/akaunting-logo-white.png') }}" alt="Akaunting" />
|
||||
</div>
|
||||
<!-- /.login-logo -->
|
||||
|
||||
<div class="login-box-body">
|
||||
<p class="login-box-msg">@yield('message')</p>
|
||||
|
||||
@include('flash::message')
|
||||
|
||||
@yield('content')
|
||||
</div>
|
||||
<!-- /.login-box-body -->
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
11
resources/views/layouts/bill.blade.php
Normal file
11
resources/views/layouts/bill.blade.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<html>
|
||||
@include('partials.bill.head')
|
||||
|
||||
<body onload="window.print();">
|
||||
<!-- Content Wrapper. Contains page content -->
|
||||
<div class="wrapper" style="margin-left: 0; page-break-after: always;">
|
||||
@yield('content')
|
||||
</div>
|
||||
<!-- /.content-wrapper -->
|
||||
</body>
|
||||
</html>
|
||||
16
resources/views/layouts/customer.blade.php
Normal file
16
resources/views/layouts/customer.blade.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
@include('partials.customer.head')
|
||||
|
||||
<body class="hold-transition skin-green-light sidebar-mini fixed">
|
||||
<!-- Site wrapper -->
|
||||
<div class="wrapper">
|
||||
@include('partials.customer.header')
|
||||
|
||||
@include('partials.customer.menu')
|
||||
|
||||
@include('partials.customer.content')
|
||||
|
||||
@include('partials.customer.footer')
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
62
resources/views/layouts/install.blade.php
Normal file
62
resources/views/layouts/install.blade.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<html>
|
||||
@include('partials.install.head')
|
||||
|
||||
<body class="hold-transition">
|
||||
<div class="install-image"></div>
|
||||
|
||||
<div class="install-content">
|
||||
<div class="install-logo">
|
||||
<img src="{{ asset('public/img/akaunting-logo-white.png') }}" alt="Akaunting" />
|
||||
</div>
|
||||
|
||||
<div class="box box-success box-solid">
|
||||
<div class="box-header">
|
||||
<div class="col-md-12">
|
||||
<h3 class="box-title">@yield('header')</h3>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.box-header -->
|
||||
|
||||
<div id="install-form">
|
||||
{!! Form::open(['url' => url()->current(), 'role' => 'form']) !!}
|
||||
|
||||
<div class="box-body">
|
||||
<div id="install-loading"></div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col-md-12">
|
||||
@include('flash::message')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@yield('content')
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
|
||||
<div class="box-footer">
|
||||
<div class="form-group">
|
||||
<div class="col-md-4 col-md-offset-8 text-right">
|
||||
@if (Request::is('install/requirements'))
|
||||
<a href="{{ url('install/requirements') }}" class="btn btn-success"> {{ trans('install.refresh') }} <i class="fa fa-refresh"></i></a>
|
||||
@else
|
||||
{!! Form::button(trans('install.next') . ' <i class="fa fa-arrow-right"></i>', ['type' => 'submit', 'id' => 'next-button', 'class' => 'btn btn-success']) !!}
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$('div.alert').not('.alert-important').delay(3000).fadeOut(350);
|
||||
|
||||
$('#next-button').on('click', function() {
|
||||
$('#install-loading').html('<span class="install-loading-bar"><span class="install-loading-spin"><i class="fa fa-spinner fa-spin"></i></span></span>');
|
||||
$('.install-loading-bar').css({"height": $('#install-form').height() - 12});
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
11
resources/views/layouts/invoice.blade.php
Normal file
11
resources/views/layouts/invoice.blade.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<html>
|
||||
@include('partials.invoice.head')
|
||||
|
||||
<body onload="window.print();">
|
||||
<!-- Content Wrapper. Contains page content -->
|
||||
<div class="wrapper" style="margin-left: 0; page-break-after: always;">
|
||||
@yield('content')
|
||||
</div>
|
||||
<!-- /.content-wrapper -->
|
||||
</body>
|
||||
</html>
|
||||
16
resources/views/layouts/modules.blade.php
Normal file
16
resources/views/layouts/modules.blade.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
@include('partials.modules.head')
|
||||
|
||||
<body class="hold-transition {{ setting('general.admin_theme', 'skin-green-light') }} sidebar-mini fixed">
|
||||
<!-- Site wrapper -->
|
||||
<div class="wrapper">
|
||||
@include('partials.admin.header')
|
||||
|
||||
@include('partials.admin.menu')
|
||||
|
||||
@include('partials.admin.content')
|
||||
|
||||
@include('partials.admin.footer')
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user