forked from summerblue/larabbs
-
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
6de91a3
commit f29d425
Showing
4 changed files
with
39 additions
and
2 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,25 @@ | ||
@extends('layouts.app') | ||
@section('title', '无权限访问') | ||
|
||
@section('content') | ||
<div class="col-md-4 offset-md-4"> | ||
<div class="card "> | ||
<div class="card-body"> | ||
@if (Auth::check()) | ||
<div class="alert alert-danger text-center mb-0"> | ||
当前登录账号无后台访问权限。 | ||
</div> | ||
@else | ||
<div class="alert alert-danger text-center"> | ||
请登录以后再操作 | ||
</div> | ||
|
||
<a class="btn btn-lg btn-primary btn-block" href="{{ route('login') }}"> | ||
<i class="fas fa-sign-in-alt"></i> | ||
登 录 | ||
</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