forked from bahrie127/laravel10-stisla
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63e287d
commit 3ece1a2
Showing
12 changed files
with
630 additions
and
20 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div class="simple-footer"> | ||
Copyright © Stisla 2018 | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<div class="login-brand"> | ||
<img src="{{ asset('img/stisla-fill.svg') }}" | ||
alt="logo" | ||
width="100" | ||
class="shadow-light rounded-circle"> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" | ||
name="viewport"> | ||
<title>@yield('title') — Stisla</title> | ||
|
||
<!-- General CSS Files --> | ||
<link rel="stylesheet" | ||
href="{{ asset('library/bootstrap/dist/css/bootstrap.min.css') }}"> | ||
<link rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" | ||
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" | ||
crossorigin="anonymous" | ||
referrerpolicy="no-referrer" /> | ||
|
||
@stack('style') | ||
|
||
<!-- Template CSS --> | ||
<link rel="stylesheet" | ||
href="{{ asset('css/style.css') }}"> | ||
<link rel="stylesheet" | ||
href="{{ asset('css/components.css') }}"> | ||
<!-- Start GA --> | ||
<script async | ||
src="https://www.googletagmanager.com/gtag/js?id=UA-94034622-3"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag('js', new Date()); | ||
gtag('config', 'UA-94034622-3'); | ||
</script> | ||
<!-- END GA --> | ||
</head> | ||
|
||
<body> | ||
<div id="app"> | ||
<section class="section"> | ||
<div class="container mt-5"> | ||
<div class="row"> | ||
<div | ||
class="{{ Request::is('auth-register') ? 'col-12 col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-8 offset-lg-2 col-xl-8 offset-xl-2' : 'col-12 col-sm-8 offset-sm-2 col-md-6 offset-md-3 col-lg-6 offset-lg-3 col-xl-4 offset-xl-4' }}"> | ||
<!-- Footer --> | ||
@include('components.auth-header') | ||
|
||
<!-- Content --> | ||
@yield('main') | ||
|
||
<!-- Footer --> | ||
@include('components.auth-footer') | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
|
||
<!-- General JS Scripts --> | ||
<script src="{{ asset('library/jquery/dist/jquery.min.js') }}"></script> | ||
<script src="{{ asset('library/popper.js/dist/umd/popper.js') }}"></script> | ||
<script src="{{ asset('library/tooltip.js/dist/umd/tooltip.js') }}"></script> | ||
<script src="{{ asset('library/bootstrap/dist/js/bootstrap.min.js') }}"></script> | ||
<script src="{{ asset('library/jquery.nicescroll/dist/jquery.nicescroll.min.js') }}"></script> | ||
<script src="{{ asset('library/moment/min/moment.min.js') }}"></script> | ||
<script src="{{ asset('js/stisla.js') }}"></script> | ||
|
||
@stack('scripts') | ||
|
||
<!-- Template JS File --> | ||
<script src="{{ asset('js/scripts.js') }}"></script> | ||
<script src="{{ asset('js/custom.js') }}"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
@extends('layouts.auth') | ||
|
||
@section('title', 'Forgot Password') | ||
|
||
@push('style') | ||
<!-- CSS Libraries --> | ||
@endpush | ||
|
||
@section('main') | ||
<div class="card card-primary"> | ||
<div class="card-header"> | ||
<h4>Forgot Password</h4> | ||
</div> | ||
|
||
<div class="card-body"> | ||
<p class="text-muted">We will send a link to reset your password</p> | ||
<form method="POST"> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<input id="email" | ||
type="email" | ||
class="form-control" | ||
name="email" | ||
tabindex="1" | ||
required | ||
autofocus> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<button type="submit" | ||
class="btn btn-primary btn-lg btn-block" | ||
tabindex="4"> | ||
Forgot Password | ||
</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
@endsection | ||
|
||
@push('scripts') | ||
<!-- JS Libraies --> | ||
|
||
<!-- Page Specific JS File --> | ||
@endpush |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
@extends('layouts.auth') | ||
|
||
@section('title', 'Login') | ||
|
||
@push('style') | ||
<!-- CSS Libraries --> | ||
<link rel="stylesheet" | ||
href="{{ asset('library/bootstrap-social/bootstrap-social.css') }}"> | ||
@endpush | ||
|
||
@section('main') | ||
<div class="card card-primary"> | ||
<div class="card-header"> | ||
<h4>Login</h4> | ||
</div> | ||
|
||
<div class="card-body"> | ||
<form method="POST" | ||
action="#" | ||
class="needs-validation" | ||
novalidate=""> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<input id="email" | ||
type="email" | ||
class="form-control" | ||
name="email" | ||
tabindex="1" | ||
required | ||
autofocus> | ||
<div class="invalid-feedback"> | ||
Please fill in your email | ||
</div> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<div class="d-block"> | ||
<label for="password" | ||
class="control-label">Password</label> | ||
<div class="float-right"> | ||
<a href="auth-forgot-password.html" | ||
class="text-small"> | ||
Forgot Password? | ||
</a> | ||
</div> | ||
</div> | ||
<input id="password" | ||
type="password" | ||
class="form-control" | ||
name="password" | ||
tabindex="2" | ||
required> | ||
<div class="invalid-feedback"> | ||
please fill in your password | ||
</div> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<div class="custom-control custom-checkbox"> | ||
<input type="checkbox" | ||
name="remember" | ||
class="custom-control-input" | ||
tabindex="3" | ||
id="remember-me"> | ||
<label class="custom-control-label" | ||
for="remember-me">Remember Me</label> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<button type="submit" | ||
class="btn btn-primary btn-lg btn-block" | ||
tabindex="4"> | ||
Login | ||
</button> | ||
</div> | ||
</form> | ||
<div class="mt-4 mb-3 text-center"> | ||
<div class="text-job text-muted">Login With Social</div> | ||
</div> | ||
<div class="row sm-gutters"> | ||
<div class="col-6"> | ||
<a class="btn btn-block btn-social btn-facebook"> | ||
<span class="fab fa-facebook"></span> Facebook | ||
</a> | ||
</div> | ||
<div class="col-6"> | ||
<a class="btn btn-block btn-social btn-twitter"> | ||
<span class="fab fa-twitter"></span> Twitter | ||
</a> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
<div class="text-muted mt-5 text-center"> | ||
Don't have an account? <a href="auth-register.html">Create One</a> | ||
</div> | ||
@endsection | ||
|
||
@push('scripts') | ||
<!-- JS Libraies --> | ||
|
||
<!-- Page Specific JS File --> | ||
@endpush |
Oops, something went wrong.