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 | 3bf78f4054f298f10e488e0204868120325eda22 (patch) | |
tree | 80d972d533fd382927b85222d1857412f64245dd /resources/views/pages/guestbook.blade.php | |
parent | 25296e79b6cc4112272559c8151d4f10894d8668 (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> |