Add a reference to the skin name in the templates to make it easier to create and modify skins
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
@extends('layouts.default.auth.layout')
|
||||
@extends("layouts.${SKIN_NAME}.auth.layout")
|
||||
@section('title', 'log in')
|
||||
|
||||
@section('content')
|
||||
<div class="col-md-4 content-center">
|
||||
<div class="card card-login card-plain">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@extends('layouts.default.app')
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
|
||||
<!-- Main Content -->
|
||||
@section('content')
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@extends('layouts.default.app')
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@extends('layouts.default.app')
|
||||
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
@section('title', 'registration pending')
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-md-12 " style="text-align: center;">
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
@extends('layouts.default.app')
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
@section('title', 'register')
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-sm-3"></div>
|
||||
@@ -66,7 +67,7 @@
|
||||
<p class="text-danger">{{ $errors->first('password_confirmation') }}</p>
|
||||
@endif
|
||||
|
||||
@include('layouts.default.auth.toc')
|
||||
@include("layouts.${SKIN_NAME}.auth.toc")
|
||||
|
||||
<div style="width: 100%; text-align: right; padding-top: 20px;">
|
||||
By registering, you agree to the Term and Conditions<br /><br />
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
@extends('layouts.default.app')
|
||||
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
@section('title', 'registration submitted')
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="container registered-page">
|
||||
<h3>Registration Confirmation</h3>
|
||||
<p>Your application has been submitted. It requires staff member approval, once a staff member has reviewed your application, you will receive an email confirmation.</p>
|
||||
<h3>Registration Confirmation</h3>
|
||||
<p>
|
||||
Your application has been submitted. It requires staff member approval, once a
|
||||
staff member has reviewed your application, you will receive an email confirmation.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
@extends('layouts.default.app')
|
||||
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
@section('title', 'registration denied')
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-md-12 " style="text-align: center;">
|
||||
<div class="flex-center position-ref full-height">
|
||||
<div class="title m-b-md">
|
||||
<h2 class="description">
|
||||
your registration was denied. please contact an administrator
|
||||
</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12 " style="text-align: center;">
|
||||
<div class="flex-center position-ref full-height">
|
||||
<div class="title m-b-md">
|
||||
<h2 class="description">
|
||||
your registration was denied. please contact an administrator
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection()
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
@extends('layouts.default.app')
|
||||
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
@section('title', 'account suspended')
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-md-12 " style="text-align: center;">
|
||||
<div class="flex-center position-ref full-height">
|
||||
<div class="title m-b-md">
|
||||
<h2 class="description">
|
||||
your has been suspended. please contact an administrator
|
||||
</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12 " style="text-align: center;">
|
||||
<div class="flex-center position-ref full-height">
|
||||
<div class="title m-b-md">
|
||||
<h2 class="description">
|
||||
your has been suspended. please contact an administrator
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection()
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
Reference in New Issue
Block a user