Minor changes to architect theme
This commit is contained in:
parent
d9896fbe93
commit
cbfd13ffce
114
resources/themes/architect/views/auth/login.blade.php
Normal file
114
resources/themes/architect/views/auth/login.blade.php
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
@extends('architect::layouts.auth')
|
||||||
|
|
||||||
|
@section('htmlheader_title')
|
||||||
|
Log in
|
||||||
|
@endsection
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<!-- /.login-logo -->
|
||||||
|
<div class="app-container app-theme-white body-tabs-shadow">
|
||||||
|
<div class="app-container">
|
||||||
|
<div class="h-100 bg-animation">
|
||||||
|
<div class="d-flex h-100 justify-content-center align-items-center">
|
||||||
|
<div class="mx-auto app-login-box col-md-8">
|
||||||
|
@if(file_exists('login-note.html'))
|
||||||
|
<div class="mx-auto card text-white card-body bg-primary w-50">
|
||||||
|
<h5 class="text-white card-title"><i class="icon fa-2x fas fa-info pr-3"></i><span class="font-size-xlg">NOTE</span></h5>
|
||||||
|
<span class="w-100 pb-0">
|
||||||
|
{!! file_get_contents('login-note.html') !!}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<div class="modal-dialog w-100 mx-auto">
|
||||||
|
<div class="modal-content">
|
||||||
|
<form class="needs-validation" novalidate method="post">
|
||||||
|
{{ csrf_field() }}
|
||||||
|
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="h5 modal-title text-center">
|
||||||
|
<h4 class="mt-2">
|
||||||
|
<div class="app-logo mx-auto mb-3"><img class="w-75" src="{{ url('img/logo-h-lg.png') }}"></div>
|
||||||
|
<small>@lang('Sign in to <strong>:server</strong>',['server'=>'Foo'])</small>
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-row">
|
||||||
|
<div class="col-md-12 mt-3">
|
||||||
|
<label class="mb-1">Email</label>
|
||||||
|
<input name="email" id="user" placeholder="" type="email" class="form-control" required="">
|
||||||
|
<div class="invalid-feedback">
|
||||||
|
@lang('Please enter your email')
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-12 mt-2">
|
||||||
|
<label class="mb-1">@lang('Password')</label>
|
||||||
|
<input name="password" id="password" placeholder="" type="password" class="form-control" required>
|
||||||
|
<div class="invalid-feedback">
|
||||||
|
@lang('Please enter your password')
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-footer">
|
||||||
|
@if (count($errors) > 0)
|
||||||
|
<div class="alert alert-danger w-100">
|
||||||
|
<strong>Whoops!</strong> Something went wrong?<br><br>
|
||||||
|
<ul>
|
||||||
|
@foreach ($errors->all() as $error)
|
||||||
|
<li>{{ $error }}</li>
|
||||||
|
@endforeach
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
<div class="float-right">
|
||||||
|
<button class="btn btn-primary btn-lg">Login</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
||||||
|
|
||||||
|
@section('page-scripts')
|
||||||
|
<style>
|
||||||
|
label {
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
font-size: 85%;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.table tr:last-child {
|
||||||
|
border-bottom: 1px solid #e9ecef;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Example starter JavaScript for disabling form submissions if there are invalid fields
|
||||||
|
(function () {
|
||||||
|
'use strict';
|
||||||
|
window.addEventListener('load',function () {
|
||||||
|
// Fetch all the forms we want to apply custom Bootstrap validation styles to
|
||||||
|
var forms = document.getElementsByClassName('needs-validation');
|
||||||
|
// Loop over them and prevent submission
|
||||||
|
var validation = Array.prototype.filter.call(forms, function (form) {
|
||||||
|
form.addEventListener('submit', function (event) {
|
||||||
|
if (form.checkValidity() === false) {
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
}
|
||||||
|
form.classList.add('was-validated');
|
||||||
|
}, false);
|
||||||
|
});
|
||||||
|
}, false);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
@append
|
@ -1,5 +1,5 @@
|
|||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html>
|
||||||
@section('htmlheader')
|
@section('htmlheader')
|
||||||
@include('architect::layouts.partials.htmlheader')
|
@include('architect::layouts.partials.htmlheader')
|
||||||
@show
|
@show
|
||||||
@ -8,16 +8,17 @@
|
|||||||
<div class="app-container app-theme-white body-tabs-shadow fixed-sidebar">
|
<div class="app-container app-theme-white body-tabs-shadow fixed-sidebar">
|
||||||
@include('architect::layouts.partials.topmenu')
|
@include('architect::layouts.partials.topmenu')
|
||||||
|
|
||||||
{{--
|
@includeIf('architect::layouts.partials.controlsidebar')
|
||||||
@include('architect::layouts.partials.controlsidebar')
|
|
||||||
--}}
|
|
||||||
|
|
||||||
<div class="app-main">
|
<div class="app-main">
|
||||||
@include('architect::layouts.partials.sidebarmenu')
|
@include('architect::layouts.partials.sidebarmenu')
|
||||||
|
|
||||||
<div class="app-main__outer">
|
<div class="app-main__outer">
|
||||||
<div class="app-main__inner">
|
<div class="app-main__inner">
|
||||||
|
<div class="main-content">
|
||||||
|
@if (trim($__env->yieldContent('page_title')))
|
||||||
@include('architect::layouts.partials.contentheader')
|
@include('architect::layouts.partials.contentheader')
|
||||||
|
@endif
|
||||||
|
|
||||||
<!-- Main content -->
|
<!-- Main content -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@ -27,6 +28,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
@include('architect::layouts.partials.contentfooter')
|
@include('architect::layouts.partials.contentfooter')
|
||||||
</div>
|
</div>
|
||||||
|
21
resources/themes/architect/views/layouts/auth.blade.php
Normal file
21
resources/themes/architect/views/layouts/auth.blade.php
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
@section('htmlheader')
|
||||||
|
@include('architect::layouts.partials.htmlheader')
|
||||||
|
@show
|
||||||
|
|
||||||
|
<body class="hold-transition login-page">
|
||||||
|
<div id="app">
|
||||||
|
@yield('content')
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@section('scripts')
|
||||||
|
@include('architect::auth.partials.scripts')
|
||||||
|
|
||||||
|
{{-- Scripts --}}
|
||||||
|
{!! Asset::scripts() !!}
|
||||||
|
|
||||||
|
@yield('page-scripts')
|
||||||
|
@show
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -5,7 +5,7 @@
|
|||||||
<ul class="nav">
|
<ul class="nav">
|
||||||
{{--
|
{{--
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a href="javascript:void(0);" class="nav-link">Footer Link 1</a>
|
<a href="javascript:void(0);" class="nav-link">Footer Link</a>
|
||||||
</li>
|
</li>
|
||||||
--}}
|
--}}
|
||||||
</ul>
|
</ul>
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<div class="badge badge-success mr-1 ml-0">
|
<div class="badge badge-success mr-1 ml-0">
|
||||||
<small>NEW</small>
|
<small>NEW</small>
|
||||||
</div>
|
</div>
|
||||||
Footer Link 4
|
Footer Link
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
--}}
|
--}}
|
||||||
|
@ -1,26 +1,30 @@
|
|||||||
<div class="app-page-title">
|
<div class="app-page-title">
|
||||||
<div class="page-title-wrapper">
|
<div class="page-title-wrapper">
|
||||||
<div class="page-title-heading">
|
<div class="page-title-heading">
|
||||||
<div class="page-title-icon">
|
@if (trim($__env->yieldContent('page_icon')))
|
||||||
<i class="@yield('page_icon','pe-7s-car')"></i>
|
<div class="page-title-icon f32">
|
||||||
|
<i class="@yield('page_icon','')"></i>
|
||||||
</div>
|
</div>
|
||||||
|
@endif
|
||||||
<div>
|
<div>
|
||||||
@yield('page_title','Page Title')
|
@yield('page_title','Page Title')
|
||||||
<div class="page-title-subheading">
|
<div class="page-title-subheading">
|
||||||
@yield('page_subtitle','Page Sub Title')
|
@yield('page_subtitle','')
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@isset($page_actions)
|
||||||
<div class="page-title-actions">
|
<div class="page-title-actions">
|
||||||
{{--
|
{{--
|
||||||
<button type="button" data-toggle="tooltip" title="Example Tooltip" data-placement="bottom" class="btn-shadow mr-3 btn btn-dark">
|
<button type="button" data-toggle="tooltip" title="Example Tooltip" data-placement="bottom" class="btn-shadow mr-3 btn btn-dark">
|
||||||
<i class="fas fa-star"></i>
|
<i class="fa fa-star"></i>
|
||||||
</button>
|
</button>
|
||||||
--}}
|
--}}
|
||||||
<div class="d-inline-block dropdown">
|
<div class="d-inline-block dropdown">
|
||||||
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn-shadow dropdown-toggle btn btn-info">
|
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn-shadow dropdown-toggle btn btn-info">
|
||||||
<span class="btn-icon-wrapper pr-2 opacity-7">
|
<span class="btn-icon-wrapper pr-2 opacity-7">
|
||||||
<i class="fas fa-business-time fa-w-20"></i>
|
<i class="fa fa-business-time fa-w-20"></i>
|
||||||
</span>
|
</span>
|
||||||
Item Menu
|
Item Menu
|
||||||
</button>
|
</button>
|
||||||
@ -40,5 +44,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
{{--
|
{{--
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a href="javascript:void(0);" class="nav-link">
|
<a href="javascript:void(0);" class="nav-link">
|
||||||
<i class="nav-link-icon fas fa-database"></i> Statistics
|
<i class="nav-link-icon fas fa-database"></i> Link
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
--}}
|
--}}
|
||||||
|
Loading…
Reference in New Issue
Block a user