Skip to content

Commit

Permalink
Merge pull request #11 from orchidsoftware/improved_ios_keyboard
Browse files Browse the repository at this point in the history
Improved iOS keyboard
  • Loading branch information
tabuna authored Oct 2, 2022
2 parents 1ff3534 + 8fee1f4 commit 45d2160
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions resources/views/auth/confirm-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

{!! \Orchid\Screen\Fields\Password::make('password')
->required()
->autocomplete('current-password')
->tabindex(1)
->autofocus()
->placeholder(__('Enter your password'))
Expand Down
1 change: 1 addition & 0 deletions resources/views/auth/forgot-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
\Orchid\Screen\Fields\Input::make('email')
->type('email')
->autofocus()
->autocomplete('email')
->placeholder('Enter your email')
->title('E-Mail Address')
!!}
Expand Down
4 changes: 4 additions & 0 deletions resources/views/auth/register.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
{!!
\Orchid\Screen\Fields\Input::make('name')
->autofocus()
->autocomplete('username')
->placeholder('Sheldon Cooper')
->title('Name')
!!}
Expand All @@ -30,6 +31,7 @@
{!!
\Orchid\Screen\Fields\Input::make('email')
->type('email')
->autocomplete('email')
->placeholder('Enter your email')
->title('E-Mail Address')
!!}
Expand All @@ -39,6 +41,7 @@
{!! \Orchid\Screen\Fields\Password::make('password')
->title('Password')
->required()
->autocomplete('new-password')
->help('Use 8 or more characters with a mix of letters, numbers & symbols')
->placeholder(__('Enter password'))
!!}
Expand All @@ -47,6 +50,7 @@
<div class="form-group">
{!! \Orchid\Screen\Fields\Password::make('password_confirmation')
->title('Confirm Password')
->autocomplete('new-password')
->required()
->placeholder(__('Enter password'))
!!}
Expand Down
2 changes: 2 additions & 0 deletions resources/views/auth/reset-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<div class="form-group">
{!! \Orchid\Screen\Fields\Password::make('password')
->title('Password')
->autocomplete('new-password')
->required()
->tabindex(2)
->placeholder(__('Enter password'))
Expand All @@ -40,6 +41,7 @@
<div class="form-group">
{!! \Orchid\Screen\Fields\Password::make('password_confirmation')
->title('Confirm Password')
->autocomplete('new-password')
->required()
->tabindex(3)
->placeholder(__('Enter password'))
Expand Down
3 changes: 3 additions & 0 deletions resources/views/auth/two-factor-challenge.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
{!!
\Orchid\Screen\Fields\Input::make('code')
->autofocus()
->inputmode('numeric')
->pattern("[0-9]*")
->autocomplete('one-time-code')
->placeholder('Verification code from application')
->title('Authentication code:')
!!}
Expand Down

0 comments on commit 45d2160

Please sign in to comment.