Skip to content

Commit

Permalink
Генерация нового пароля в Chrome при регистрации
Browse files Browse the repository at this point in the history
  • Loading branch information
russsiq committed Oct 12, 2019
1 parent 80f728c commit c384703
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/skins/default/public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/themes/default/public/js/app.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions resources/themes/default/views/auth/register.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div class="form-group row">
<label for="password" class="col-md-4 col-form-label">@lang('auth.password')</label>
<div class="col-md-6">
<input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required>
<input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" autocomplete="new-password" required>
@if ($errors->has('password'))
<span class="invalid-feedback">{{ $errors->first('password') }}</span>
@endif
Expand All @@ -39,7 +39,7 @@
<div class="form-group row">
<label for="password-confirm" class="col-md-4 col-form-label">@lang('auth.password_confirmation')</label>
<div class="col-md-6">
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" autocomplete="new-password" required>
</div>
</div>

Expand Down

0 comments on commit c384703

Please sign in to comment.