Fix login and password resets forms

This commit is contained in:
Deon George 2018-08-08 00:14:48 +10:00
parent f1787aaa32
commit 98b7b9f6a8
No known key found for this signature in database
GPG Key ID: 7670E8DC27415254
4 changed files with 118 additions and 112 deletions

View File

@ -24,7 +24,7 @@ return [
'conditions' => 'Terms and conditions', 'conditions' => 'Terms and conditions',
'register' => 'Register', 'register' => 'Register',
'login' => 'Login', 'login' => 'Login',
'membreship' => 'I already have a membership', 'membership' => 'I already have a membership',
'passwordclickreset' => 'Click here to reset your password:', 'passwordclickreset' => 'Click here to reset your password:',
'signGithub' => 'Sign in using Github', 'signGithub' => 'Sign in using Github',
'signFacebook' => 'Sign in using Facebook', 'signFacebook' => 'Sign in using Facebook',
@ -51,35 +51,21 @@ return [
'level' => 'Level', 'level' => 'Level',
'here' => 'Here', 'here' => 'Here',
'recentactivity' => 'Recent Activity', 'recentactivity' => 'Recent Activity',
'descriptionpackage' => 'A Laravel 5 package that switchs default Laravel scaffolding/boilerplate to AdminLTE template',
'createdby' => 'Created by', 'createdby' => 'Created by',
'seecode' => 'See code at', 'seecode' => 'See code at',
'online' => 'Online', 'online' => 'Online',
'home' => 'Home', 'home' => 'Home',
'header' => 'HEADER', 'header' => 'HEADER',
'anotherlink' => 'Another Link',
'multilevel' => 'Multilevel',
'linklevel2' => 'Link in level2',
'birthday' => 'Langdon\'s Birthday',
'birthdaydate' => 'Will be 23 on April 24th',
'progress' => 'Tasks Progress', 'progress' => 'Tasks Progress',
'customtemplate' => 'Custom Template Design',
'statstab' => 'Stats Tab Content', 'statstab' => 'Stats Tab Content',
'generalset' => 'General Settings', 'generalset' => 'General Settings',
'reportpanel' => 'Report panel usage', 'reportpanel' => 'Report panel usage',
'checked' => 'checked', 'checked' => 'checked',
'informationsettings' => 'Some information about this general settings option',
'togglenav' => 'Toggle navigation', 'togglenav' => 'Toggle navigation',
'tabmessages' => 'You have 4 messages',
'supteam' => 'Support Team', 'supteam' => 'Support Team',
'awesometheme' => 'Why not buy a new awesome theme?',
'allmessages' => 'See All Messages', 'allmessages' => 'See All Messages',
'notifications' => 'You have 10 notifications',
'newmembers' => '5 new members joined today',
'viewall' => 'View all', 'viewall' => 'View all',
'tasks' => 'You have 9 tasks',
'alltasks' => 'View all tasks', 'alltasks' => 'View all tasks',
'desbuttons' => 'Design some buttons',
'complete' => 'Complete', 'complete' => 'Complete',
'membersince' => 'Member since', 'membersince' => 'Member since',
'followers' => 'Followers', 'followers' => 'Followers',
@ -87,26 +73,15 @@ return [
'friends' => 'Friends', 'friends' => 'Friends',
'profile' => 'Profile', 'profile' => 'Profile',
'signout' => 'Sign out', 'signout' => 'Sign out',
'landingdescription' => 'Laravel 5 package that switchs default Laravel scaffolding/boilerplate to AdminLTE template with Bootstrap 3.0 and Pratt Landing page',
'landingdescriptionpratt' => 'Acacha AdminLTE Laravel package template Landing page - Using Pratt',
'description' => 'Description',
'showcase' => 'Showcase', 'showcase' => 'Showcase',
'contact' => 'Contact', 'contact' => 'Contact',
'laravelpackage' => '5 package that switchs default Laravel',
'to' => 'to', 'to' => 'to',
'templatewith' => 'template with',
'and' => 'and', 'and' => 'and',
'gedstarted' => 'Get Started!', 'gedstarted' => 'Get Started!',
'amazing' => 'Amazing admin template',
'basedadminlte' => 'Based on adminlte bootstrap theme',
'awesomepackaged' => 'Awesome packaged...',
'by' => 'by', 'by' => 'by',
'at' => 'at', 'at' => 'at',
'readytouse' => 'ready to use with Laravel!',
'designed' => 'Designed To Excel',
'community' => 'Community', 'community' => 'Community',
'see' => 'See', 'see' => 'See',
'githubproject' => 'Github project',
'post' => 'post', 'post' => 'post',
'issues' => 'issues', 'issues' => 'issues',
'pullrequests' => 'Pull requests', 'pullrequests' => 'Pull requests',
@ -114,10 +89,6 @@ return [
'monitoring' => 'Monitoring', 'monitoring' => 'Monitoring',
'whatnew' => 'What\'s New?', 'whatnew' => 'What\'s New?',
'features' => 'Some Features', 'features' => 'Some Features',
'design' => 'First Class Design',
'retina' => 'Retina Ready Theme',
'support' => 'Awesome Support',
'responsive' => 'Responsive Design',
'screenshots' => 'Some Screenshots', 'screenshots' => 'Some Screenshots',
'address' => 'Address', 'address' => 'Address',
'dropus' => 'Drop Us A Line', 'dropus' => 'Drop Us A Line',
@ -137,4 +108,6 @@ return [
'entering' => 'Entering...', 'entering' => 'Entering...',
'registered' => 'User Registered!', 'registered' => 'User Registered!',
'switchoff' => 'Switch Back', 'switchoff' => 'Switch Back',
'success' => 'Success!',
'resetemaillink' => 'We have e-mailed your password reset link!',
]; ];

View File

@ -24,7 +24,7 @@
@endif @endif
<div class="login-box-body"> <div class="login-box-body">
<p class="login-box-msg"> {{ trans('adminlte_lang::message.siginsession') }} </p> <p class="login-box-msg">{{ trans('adminlte_lang::message.siginsession') }}</p>
<login-form name="{{ config('auth.providers.users.field','email') }}" <login-form name="{{ config('auth.providers.users.field','email') }}"
domain="{{ config('auth.defaults.domain','') }}"></login-form> domain="{{ config('auth.defaults.domain','') }}"></login-form>
@ -34,8 +34,9 @@
@if(count(config('auth.social',[]))) @if(count(config('auth.social',[])))
@include('adminlte::auth.partials.social_login') @include('adminlte::auth.partials.social_login')
@endif @endif
</div> </div><!-- /.login-box-body -->
</div>
</div><!-- /.login-box -->
</div> </div>
@include('adminlte::layouts.partials.scripts_auth') @include('adminlte::layouts.partials.scripts_auth')

View File

@ -5,13 +5,11 @@
@endsection @endsection
@section('content') @section('content')
<body class="hold-transition login-page">
<body class="login-page"> <div id="app" v-cloak>
<div id="app">
<div class="login-box"> <div class="login-box">
<div class="login-logo"> <div class="login-logo">
<a href="{{ url('/home') }}"><b>Admin</b>LTE</a> <a href="{{ url('/home') }}">{!! config('app.name_html_long') !!}</a>
</div><!-- /.login-logo --> </div><!-- /.login-logo -->
@if (session('status')) @if (session('status'))
@ -32,28 +30,16 @@
@endif @endif
<div class="login-box-body"> <div class="login-box-body">
<p class="login-box-msg">Reset Password</p> <p class="login-box-msg">{{ trans('adminlte_lang::message.passwordreset') }}</p>
<email-reset-password-form></email-reset-password-form> <email-reset-password-form></email-reset-password-form>
<a href="{{ url('/login') }}">Log in</a><br> <a href="{{ url('/login') }}">Log in</a><br>
</div><!-- /.login-box-body --> </div><!-- /.login-box-body -->
</div><!-- /.login-box --> </div><!-- /.login-box -->
</div> </div>
@include('adminlte::layouts.partials.scripts_auth') @include('adminlte::layouts.partials.scripts_auth')
<script>
$(function () {
$('input').iCheck({
checkboxClass: 'icheckbox_square-blue',
radioClass: 'iradio_square-blue',
increaseArea: '20%' // optional
});
});
</script>
</body> </body>
@endsection @endsection

View File

@ -0,0 +1,46 @@
@extends('adminlte::layouts.auth')
@section('htmlheader_title')
Password reset
@endsection
@section('content')
<body class="hold-transition login-page">
<div id="app" v-cloak>
<div class="login-box">
<div class="login-logo">
<a href="{{ url('/home') }}">{!! config('app.name_html_long') !!}</a>
</div><!-- /.login-logo -->
@if (session('status'))
<div class="alert alert-success">
{{ session('status') }}
</div>
@endif
@if (count($errors) > 0)
<div class="alert alert-danger">
<strong>Whoops!</strong> {{ trans('adminlte_lang::message.someproblems') }}<br><br>
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
<div class="login-box-body">
<p class="login-box-msg">{{ trans('adminlte_lang::message.passwordreset') }}</p>
<reset-password-form token="{{ $token }}">></reset-password-form>
<a href="{{ url('/login') }}">Log in</a><br>
<a href="{{ url('/register') }}" class="text-center">{{ trans('adminlte_lang::message.register') }}</a>
</div><!-- /.login-box-body -->
</div><!-- /.login-box -->
</div>
@include('adminlte::layouts.partials.scripts_auth')
</body>
@endsection