accessibility

This commit is contained in:
Thomas G 2022-07-24 21:10:44 +10:00
parent 30d8e2bea2
commit aa92c423b2
1 changed files with 2 additions and 2 deletions

View File

@ -22,11 +22,11 @@
<input id="FeedBox" type="text" name="status" placeholder="Say something..." style="width: 80%;"
value="{{ old('status') }}">
<button style="width: 20%;height: 28px;margin-left: 10px;" class="greybutton" id="FeedButton"
type="submit" onClick="this.form.submit();this.disabled=true;this.innerText='Posting…';">Post
type="submit" alt="Post Button" onClick="this.form.submit();this.disabled=true;this.innerText='Posting…';">Post
it!</button>
</p>
@if ($errors->any())
<span class="warningtext">{{ $errors->first() }}</span>
<span alt="Error: {{ $errors->first() }}" class="warningtext">{{ $errors->first() }}</span>
@endif
@if (session()->has('success'))
<span style="color:green">{{ session()->get('success') }}</span>