Skip to content

Commit

Permalink
Merge pull request #60 from andes2912/feature/auth
Browse files Browse the repository at this point in the history
Improve & Bug fix login & register
  • Loading branch information
andes2912 authored May 18, 2022
2 parents 298a33c + eac8b9c commit c8abaa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/PPDB/Resources/views/auth/register.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
</div>
<div class="form-group">
<div class="input-group input-group-merge form-password-toggle">
<input class="form-control form-control-merge @error('confirm_password') is-invalid @enderror" type="confirm_password" name="confirm_password" placeholder="············" tabindex="2" />
<input class="form-control form-control-merge @error('confirm_password') is-invalid @enderror" type="password" name="confirm_password" placeholder="············" tabindex="2" />
<div class="input-group-append"><span class="input-group-text cursor-pointer"><i data-feather="eye"></i></span></div>
@error('confirm_password')
<span class="invalid-feedback" role="alert">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
@csrf
<div class="form-group">
<label class="form-label" for="login-email">Email</label>
<input class="form-control @error('email') is-invalid @enderror" id="login-email" type="text" name="email" placeholder="Masukan Email" aria-describedby="login-email" autofocus="" tabindex="1" />
<input class="form-control @error('email') is-invalid @enderror" id="login-email" type="text" name="email" value=" {{old('email')}} " placeholder="Masukan Email" aria-describedby="login-email" autofocus="" tabindex="1" />
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
Expand Down

0 comments on commit c8abaa9

Please sign in to comment.