Initial commit
This commit is contained in:
30
views/layout/header.blade.php
Normal file
30
views/layout/header.blade.php
Normal file
@ -0,0 +1,30 @@
|
||||
<div class="header">
|
||||
<div class="container">
|
||||
@section('header')
|
||||
<h4><a href="/" class="title text-dark">Blog App</a></h4>
|
||||
@show
|
||||
@if(isset($_SESSION['is_auth']))
|
||||
<form method="POST" action="/user/logout" class="float-right">
|
||||
<input type="hidden" name="_token" value="{{ $_SESSION['_token'] }}">
|
||||
<button type="submit" class="btn btn-dark">Logout</button>
|
||||
</form>
|
||||
<div class="float-right">
|
||||
<a href="/post/create" class="post-create btn btn-success">New Post</a>
|
||||
</div>
|
||||
@else
|
||||
@if(! preg_match('/\/register$/', $_SERVER['REQUEST_URI']))
|
||||
<div class="float-right">
|
||||
<a href="/user/register" class="register btn btn-info">Register</a>
|
||||
</div>
|
||||
@endif
|
||||
@if(! preg_match('/\/login$/', $_SERVER['REQUEST_URI']))
|
||||
<div class="float-right">
|
||||
<a href="/user/login" class="login btn btn-light">Login</a>
|
||||
</div>
|
||||
@endif
|
||||
@endif
|
||||
<div class="float-right">
|
||||
<input type="text" placeholder="Search title ..." id="search" class="search form-control" value="{{ isset($keyword) ? urldecode($keyword) : '' }}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user