暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

reset.js 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import Link from "next/link";
  2. function Reset() {
  3. return (
  4. <>
  5. <div className="authincation section-padding">
  6. <div className="container h-100">
  7. <div className="row justify-content-center h-100 align-items-center">
  8. <div className="col-xl-4 col-md-5">
  9. <div className="mini-logo text-center my-3">
  10. <Link href="/">
  11. <a>
  12. <img src="./images/logo.png" alt="" />
  13. </a>
  14. </Link>
  15. <h4 className="card-title mt-5">Reset Password</h4>
  16. </div>
  17. <div className="auth-form card">
  18. <div className="card-body">
  19. <form
  20. className="row g-3"
  21. >
  22. <div className="col-12">
  23. <label className="form-label">
  24. Email
  25. </label>
  26. <input
  27. type="text"
  28. className="form-control"
  29. placeholder="***********"
  30. />
  31. </div>
  32. <div className="text-center mt-4">
  33. <button
  34. type="submit"
  35. className="btn btn-primary btn-block"
  36. >
  37. Submit
  38. </button>
  39. </div>
  40. </form>
  41. <div className="new-account mt-3">
  42. <p>
  43. Don't get code?
  44. <Link href="/otp-1">
  45. <a
  46. className="text-primary"
  47. >
  48. Resend
  49. </a>
  50. </Link>
  51. </p>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </>
  60. );
  61. }
  62. export default Reset;