-
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
Showing
4 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
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,27 @@ | ||
@extends('layouts.app') | ||
@section('title', '无权限访问') | ||
|
||
@section('content') | ||
|
||
<div class="col-md-4 col-md-offset-4"> | ||
<div class="panel panel-default"> | ||
<div class="panel-body"> | ||
@if (Auth::check()) | ||
<div class="alert alert-danger text-center"> | ||
当前登录账号无后台访问权限。 | ||
</div> | ||
@else | ||
<div class="alert alert-danger text-center"> | ||
请登录以后再操作 | ||
</div> | ||
|
||
<a class="btn btn-lg btn-primary btn-block" href="{{ route('login') }}"> | ||
<span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> | ||
登 录 | ||
</a> | ||
@endif | ||
</div> | ||
</div> | ||
</div> | ||
|
||
@stop |
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