Skip to content

Commit

Permalink
Merge pull request #29 from thedevdojo/fixingAccessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea authored Jun 2, 2024
2 parents 4f5af65 + c4b6817 commit be54450
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,11 @@

## About Auth

The DevDojo Auth package is a plug'n play Authentication wrapper for your Laravel application. Easily update and modify your authentication pages, add social providers, and many other auth features.
The DevDojo Auth package is a plug'n play Authentication package for your Laravel application. Easily update and modify your authentication pages, add social providers, and many other auth features.

- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
<a href="https://devdojo.com/auth" target="_blank"><img src="https://cdn.devdojo.com/images/june2024/auth-screens.jpeg" class="w-full h-full" style="border-radius:10px" /></a>

Laravel is accessible, powerful, and provides tools required for large, robust applications.
Be sure to visit the official documentation at [https://devdojo.com/auth/docs](https://devdojo.com/auth/docs)

## Installation

Expand Down
4 changes: 2 additions & 2 deletions resources/views/components/elements/logo.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<x-auth::elements.link href="/" style="height:{{ $height ?? '30' }}px; width:auto; display:block">
<x-auth::elements.link href="/" style="height:{{ $height ?? '30' }}px; width:auto; display:block" aria-label="{{ config('app.name') }} Logo">
@if($isImage)
<img src="{{ url($imageSrc) }}" style="height:100%; width:auto" />
<img src="{{ url($imageSrc) }}" style="height:100%; width:auto" alt="" />
@else
{!! str_replace('<svg', '<svg style="height:100%; width:auto"', $svgString) !!}
@endif
Expand Down
2 changes: 1 addition & 1 deletion resources/views/pages/auth/register.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public function register()
@php
$autofocusEmail = ($showNameField) ? false : true;
@endphp
<x-auth::elements.input label="Email Address" type="email" wire:model="email" :autofocus="$autofocusEmail" required />
<x-auth::elements.input label="Email Address" id="email" type="email" wire:model="email" :autofocus="$autofocusEmail" required />
@endif

@if($showPasswordField)
Expand Down

0 comments on commit be54450

Please sign in to comment.