diff options
author | Frankie B <git@diskfloppy.me> | 2023-10-15 20:52:32 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-10-15 20:52:32 +0100 |
commit | 4b585fe2cae9b8834aea6f783b485dc3552a95b6 (patch) | |
tree | 80d972d533fd382927b85222d1857412f64245dd /resources/views/pages/guestbook.blade.php | |
parent | 4066dbb6d31fd7d32cc0133f4f8a249343357551 (diff) |
Update pages to be ADA-compliant
Diffstat (limited to 'resources/views/pages/guestbook.blade.php')
-rw-r--r-- | resources/views/pages/guestbook.blade.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/pages/guestbook.blade.php b/resources/views/pages/guestbook.blade.php index 13415b4..ac4c80e 100644 --- a/resources/views/pages/guestbook.blade.php +++ b/resources/views/pages/guestbook.blade.php @@ -13,13 +13,13 @@ @include('components.errors.db-error') @else <br> - <table class="gb-entry-form-container"> + <table class="gb-entry-form-container" role="presentation"> <tr> <td> <form method="POST" action="/guestbook"> @csrf <x-honeypot/> - <table class="gb-entry-form"> + <table class="gb-entry-form" role="presentation"> <tr> <td> <label for="name"><strong>Name:</strong></label> @@ -71,9 +71,9 @@ ORDER BY id DESC '); @endphp - <h1>Entries <small>({{ count($entries) }} total)</small></h1> + <h2>Entries <small>({{ count($entries) }} total)</small></h2> @foreach ($entries as $entry) - <table class="gb-entry"> + <table class="gb-entry" role="presentation"> <tr> <td> Submitted by <strong>{{ $entry->name }}</strong> |