Nessuna descrizione
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.

forgot-password.blade.php 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @extends('layouts.layout')
  2. @section('content')
  3. <div class="container-xxl">
  4. <div class="authentication-wrapper authentication-basic container-p-y">
  5. <div class="authentication-inner py-4">
  6. <!-- Forgot Password -->
  7. <div class="card">
  8. <div class="card-body">
  9. <!-- Logo -->
  10. <div class="app-brand justify-content-center mb-4 mt-2" style="display: flex; text-align: center;">
  11. <a href="#" class="app-brand-link gap-0" >
  12. <img src="assets/img/icons/logo.png" alt="icon" width="30%" style="margin-left: 20%;">
  13. <span class="app-brand-text demo text-body fw-bold">SAFIRA</span>
  14. </a>
  15. </div>
  16. <!-- /Logo -->
  17. <h4 class="mb-1 pt-2">Forgot Password? 🔒</h4>
  18. <p class="mb-4">Enter your email and we'll send you instructions to reset your password</p>
  19. <form class="mb-3" action="{{route('sendResetLink')}}" method="POST">
  20. @csrf
  21. <div class="mb-3">
  22. <label for="email" class="form-label">Email</label>
  23. <input
  24. type="text"
  25. class="form-control"
  26. id="email"
  27. name="email"
  28. placeholder="Enter your email"
  29. autofocus />
  30. </div>
  31. <button class="btn btn-delete d-grid w-100" style="background-color: #004ae1; color:white;">Send Reset Link</button>
  32. </form>
  33. <div class="text-center">
  34. <a href="{{route('index.login')}}" class="d-flex align-items-center justify-content-center" style="color: #004ae1;">
  35. <i class="ti ti-chevron-left scaleX-n1-rtl"></i>
  36. Back to login
  37. </a>
  38. </div>
  39. </div>
  40. </div>
  41. <!-- /Forgot Password -->
  42. </div>
  43. </div>
  44. </div>
  45. @endsection