Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reset.blade.php 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @extends('layouts.layout')
  2. @section('content')
  3. <!-- Content -->
  4. <div class="container-xxl">
  5. <div class="authentication-wrapper authentication-basic container-p-y">
  6. <div class="authentication-inner py-4">
  7. <!-- Reset Password -->
  8. <div class="card">
  9. <div class="card-body">
  10. <!-- Logo -->
  11. <div class="app-brand justify-content-center mb-4 mt-2" style="display: flex; text-align: center;">
  12. <a href="#" class="app-brand-link gap-0" >
  13. <img src="{{asset('assets/img/icons/logo.png')}}" alt="icon" width="30%" style="margin-left: 20%;">
  14. <span class="app-brand-text demo text-body fw-bold">SAFIRA</span>
  15. </a>
  16. </div>
  17. <!-- /Logo -->
  18. <h4 class="mb-1 pt-2">Reset Password 🔒</h4>
  19. <form action="{{ route('reset.password', ['token' => $token]) }}" method="POST">
  20. @csrf
  21. <div class="mb-3 form-password-toggle">
  22. <label class="form-label" for="password">New Password</label>
  23. <div class="input-group input-group-merge">
  24. <input
  25. required
  26. type="password"
  27. id="password"
  28. class="form-control"
  29. name="password"
  30. placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;"
  31. aria-describedby="password" />
  32. <span class="input-group-text cursor-pointer"><i class="ti ti-eye-off"></i></span>
  33. </div>
  34. </div>
  35. <div class="mb-3 form-password-toggle">
  36. <label class="form-label" for="confirm-password">Confirm Password</label>
  37. <div class="input-group input-group-merge">
  38. <input
  39. required
  40. type="password"
  41. class="form-control"
  42. name="password_confirmation"
  43. id="password_confirmation"
  44. placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;"
  45. aria-describedby="password" />
  46. <span class="input-group-text cursor-pointer"><i class="ti ti-eye-off"></i></span>
  47. </div>
  48. </div>
  49. <button class="btn btn-delete d-grid w-100 mb-3" name="submit" style="background-color: #004ae1; color:white;">Set new password</button>
  50. <div class="text-center">
  51. <a href="{{route('index.login')}}" class="d-flex align-items-center justify-content-center" style="color: #004ae1;">
  52. <i class="ti ti-chevron-left scaleX-n1-rtl"></i>
  53. Back to login
  54. </a>
  55. </div>
  56. </form>
  57. </div>
  58. </div>
  59. <!-- /Reset Password -->
  60. </div>
  61. </div>
  62. </div>
  63. @endsection