diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-29 18:03:13 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-07-29 18:10:50 +0100 |
commit | 8c0a2a6383a447bcfe988f8fa46f3923e30bff17 (patch) | |
tree | ab7483cda3af501fc0dfec175dda4983a7b99aad /resources/views | |
parent | e15ea940b3823f8865d63d34e464328be6b25c34 (diff) |
Merge fixes into v5.5 branch (#12)
---------
Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
Diffstat (limited to 'resources/views')
-rw-r--r-- | resources/views/pages/admin/guestbook-del-confirm.blade.php | 2 | ||||
-rw-r--r-- | resources/views/pages/admin/guestbook.blade.php | 6 | ||||
-rw-r--r-- | resources/views/pages/guestbook.blade.php | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/resources/views/pages/admin/guestbook-del-confirm.blade.php b/resources/views/pages/admin/guestbook-del-confirm.blade.php index ebdafd2..7db9e6d 100644 --- a/resources/views/pages/admin/guestbook-del-confirm.blade.php +++ b/resources/views/pages/admin/guestbook-del-confirm.blade.php @@ -6,7 +6,7 @@ <p>Are you sure you want to delete this entry?</p> <h3>Entry Details:</h3> - <table class="gb_entry_details"> + <table class="gb-entry_details"> <tr> <td><b>ID:</b></td> <td>{{ $entry->id }}</td> diff --git a/resources/views/pages/admin/guestbook.blade.php b/resources/views/pages/admin/guestbook.blade.php index a3b073f..d510910 100644 --- a/resources/views/pages/admin/guestbook.blade.php +++ b/resources/views/pages/admin/guestbook.blade.php @@ -10,19 +10,19 @@ @endphp <h1>Entries <small>({{ count($entries) }} total)</small></h1> @foreach ($entries as $entry) - <table class="gb_admin"> + <table class="gb-admin"> <tr> <td> Name: {{ $entry->name }}<br> IP: {{ $entry->ip_address }}<br> Date: {{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }} </td> - <td class="gb_del"> + <td class="gb-del"> <a href="/admin/guestbook/delete?id={{ $entry->id }}">del</a> </td> </tr> <tr> - <td colspan="2" class="gb_message"> + <td colspan="2" class="gb-message"> <br> {{ htmlspecialchars($entry->message) }} </td> diff --git a/resources/views/pages/guestbook.blade.php b/resources/views/pages/guestbook.blade.php index a0112c1..9037ab5 100644 --- a/resources/views/pages/guestbook.blade.php +++ b/resources/views/pages/guestbook.blade.php @@ -2,13 +2,13 @@ @section('title', 'Guestbook') @section('content') <br> - <table class="gb_entryform_container"> + <table class="gb-entryform_container"> <tr> <td> <form method="POST" action="/guestbook"> @csrf <x-honeypot /> - <table class="gb_entryform"> + <table class="gb-entryform"> <tr> <td> <label for="name"><strong>Name:</strong></label> @@ -62,7 +62,7 @@ @endphp <h1>Entries <small>({{ count($entries) }} total)</small></h1> @foreach ($entries as $entry) - <table class="gb_entry"> + <table class="gb-entry"> <tr> <td> Submitted by <strong>{{ $entry->name }}</strong> |