Enabled new login page

This commit is contained in:
Deon George
2021-06-13 13:56:27 +10:00
parent d7f3ab4130
commit 182f877701
10 changed files with 300 additions and 121 deletions

View File

@@ -1,16 +1,23 @@
<!DOCTYPE html>
<html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
@section('htmlheader')
@include('layouts.partials.htmlheader')
@show
<body class="hold-transition login-page">
<div id="app">
<body>
<div id="content">
@yield('content')
</div>
<div id="footer" class="shifted">
@include('layouts.partials.footer')
</div>
{{-- Scripts --}}
@section('scripts')
@include('auth.partials.scripts')
@include('layouts.partials.scripts')
@yield('page-scripts')
@show
</body>
</html>