feat: site admin (#8)
This commit is contained in:
parent
691d0d933d
commit
7c16dc53b5
15 changed files with 1378 additions and 52 deletions
9
resources/views/errors/generic-error.blade.php
Normal file
9
resources/views/errors/generic-error.blade.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
@extends('layouts.minimal')
|
||||
@section('title', 'Error 401: Unauthorized User!')
|
||||
@section('content')
|
||||
<h1>{{ $error }}</h1>
|
||||
<hr/>
|
||||
@if(isset($description))
|
||||
<p>{{ $description }}</p>
|
||||
@endif
|
||||
@stop
|
8
resources/views/errors/no-auth.blade.php
Normal file
8
resources/views/errors/no-auth.blade.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
@extends('layouts.minimal')
|
||||
@section('title', 'Error 401: Unauthorized User!')
|
||||
@section('content')
|
||||
<h1>Error 401: Unauthorized User!</h1>
|
||||
<hr/>
|
||||
<p>Woah there! Only authorized users can access this page. Please <a href="/login">log in</a> to proceed.</p>
|
||||
<p>Ended up here on accident? Click <a href="/">here</a> to return to the homepage</u>!</p>
|
||||
@stop
|
12
resources/views/includes/admin/header.blade.php
Normal file
12
resources/views/includes/admin/header.blade.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<nav>
|
||||
<div>
|
||||
<a href="/">public home</a> |
|
||||
<a href="/admin">admin home</a> |
|
||||
<a href="/admin/guestbook">guestbook</a>
|
||||
@if (auth()->check())
|
||||
| ({{ auth()->user()->name }}) <a href="/logout">logout</a>
|
||||
@else
|
||||
| <a href="/login">login</a>
|
||||
@endif
|
||||
</div>
|
||||
</nav>
|
|
@ -1,12 +1,18 @@
|
|||
<nav>
|
||||
<div>
|
||||
<a href="/">home</a> |
|
||||
<a href="//git.diskfloppy.me/">cgit</a> |
|
||||
<a href="//git.diskfloppy.me/">cgit</a> |
|
||||
<a href="//wiki.diskfloppy.me/">wiki</a> |
|
||||
<a href="/projects/">projects</a> |
|
||||
<a href="/calculators/">calculators</a> |
|
||||
<a href="/computers/">computers</a> |
|
||||
<a href="/bookmarks/">bookmarks</a> |
|
||||
<a href="/guestbook/">guestbook</a>
|
||||
@if (auth()->check())
|
||||
| <a href="/admin/">admin</a>
|
||||
| ({{ auth()->user()->name }}) <a href="/logout">logout</a>
|
||||
@else
|
||||
| <a href="/login">login</a>
|
||||
@endif
|
||||
</div>
|
||||
</nav>
|
||||
|
|
23
resources/views/layouts/default-admin.blade.php
Normal file
23
resources/views/layouts/default-admin.blade.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html lang="en">
|
||||
<head>
|
||||
@include('includes.head')
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="page">
|
||||
<div class="header">
|
||||
@include('includes.admin.header')
|
||||
</div> <!-- header -->
|
||||
|
||||
<div id="pagebody">
|
||||
<div id="content">
|
||||
@yield('content')
|
||||
</div> <!-- content -->
|
||||
<div id="footer" class="pagefooter">
|
||||
@include('includes.footer')
|
||||
</div> <!-- footer -->
|
||||
</div> <!-- pagebody -->
|
||||
</div> <!-- page -->
|
||||
</body>
|
||||
</html>
|
33
resources/views/pages/admin/guestbook-del-confirm.blade.php
Normal file
33
resources/views/pages/admin/guestbook-del-confirm.blade.php
Normal file
|
@ -0,0 +1,33 @@
|
|||
@extends('layouts.minimal')
|
||||
@section('title', 'Delete confirm')
|
||||
@section('content')
|
||||
<h1>Delete Confirmation</h1>
|
||||
<hr/>
|
||||
<p>Are you sure you want to delete this entry?</p>
|
||||
|
||||
<h3>Entry Details:</h3>
|
||||
<table class="gb_entry_details">
|
||||
<tr>
|
||||
<td><b>ID:</b></td>
|
||||
<td>{{ $entry->id }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Name:</b></td>
|
||||
<td>{{ $entry->name }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Date:</b></td>
|
||||
<td>{{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Message:</b></td>
|
||||
<td>{{ $entry->message }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<form action="/admin/guestbook/delete" method="POST">
|
||||
@csrf
|
||||
<input type="hidden" name="id" value="{{ $entry->id }}">
|
||||
<button type="submit">Confirm Delete</button>
|
||||
</form>
|
||||
@stop
|
27
resources/views/pages/admin/guestbook.blade.php
Normal file
27
resources/views/pages/admin/guestbook.blade.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
@extends('layouts.default-admin')
|
||||
@section('title', 'guestbook')
|
||||
@section('content')
|
||||
@php
|
||||
$entries = DB::select('SELECT id, name, timestamp, message FROM guestbook_entries ORDER BY id DESC');
|
||||
@endphp
|
||||
<h1>Entries <small>({{ count($entries) }} total)</small></h1>
|
||||
@foreach ($entries as $entry)
|
||||
<table class="gb_admin">
|
||||
<tr>
|
||||
<td>
|
||||
Name: {{ $entry->name }}<br/>
|
||||
Date: {{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }}
|
||||
</td>
|
||||
<td class="gb_del">
|
||||
<a href="/admin/guestbook/delete?id={{ $entry->id }}">del</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" class="gb_message">
|
||||
<br/>
|
||||
{{ htmlspecialchars($entry->message) }}
|
||||
</td>
|
||||
</tr></table>
|
||||
@endforeach
|
||||
@stop
|
||||
|
9
resources/views/pages/admin/index.blade.php
Normal file
9
resources/views/pages/admin/index.blade.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
@extends('layouts.default-admin')
|
||||
@section('title', 'Page Title')
|
||||
@section('description', 'Page description goes here')
|
||||
@php
|
||||
$user = auth()->user();
|
||||
@endphp
|
||||
@section('content')
|
||||
<p>You are logged in as {{ $user->name }} ({{ $user->email }})</p>
|
||||
@stop
|
Loading…
Add table
Add a link
Reference in a new issue