Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

otp2.js 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. import Link from "next/link";
  2. function Otp2() {
  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-5 col-md-6">
  9. <div
  10. className="alert alert-success fade show d-flex justify-content-between"
  11. role="alert"
  12. >
  13. <span>
  14. Please enter verification token from your
  15. device
  16. </span>
  17. <span className="c-pointer" data-dismiss="alert">
  18. <i className="ri-close-line"></i>
  19. </span>
  20. </div>
  21. <div className="mini-logo text-center my-3">
  22. <Link href="/">
  23. <a>
  24. <img src="./images/logo.png" alt="" />
  25. </a>
  26. </Link>
  27. <h4 className="card-title mt-5">
  28. 2-Step Verification
  29. </h4>
  30. </div>
  31. <div className="auth-form card">
  32. <div className="card-body">
  33. <p className="text-center mb-3">
  34. Enter the verification code generated by
  35. your phone ending in +xxx xxxxxxxx60.
  36. </p>
  37. <form className="row g-3">
  38. <div className="col-12">
  39. <div className="input-group">
  40. <div className="input-group-prepend">
  41. <span className="input-group-text">
  42. <i className="ri-smartphone-line"></i>
  43. </span>
  44. </div>
  45. <input
  46. type="text"
  47. className="form-control"
  48. placeholder="verification code"
  49. />
  50. </div>
  51. </div>
  52. <div className="col-12">
  53. <div className="text-center">
  54. <button
  55. type="submit"
  56. className="btn btn-primary btn-block"
  57. >
  58. Send
  59. </button>
  60. </div>
  61. </div>
  62. <div className="col-12">
  63. <div className="form-check form-switch">
  64. <input
  65. type="checkbox"
  66. className="form-check-input"
  67. id="exampleCheck1"
  68. />
  69. <label
  70. className="form-check-label"
  71. for="exampleCheck1"
  72. >
  73. <small>
  74. Don't ask me for the
  75. code again for 30 days
  76. when I use this
  77. computer.
  78. </small>
  79. </label>
  80. </div>
  81. </div>
  82. </form>
  83. <div className="new-account mt-3">
  84. <p>
  85. Don't get code?
  86. <Link href="/otp-1">
  87. <a
  88. className="text-primary"
  89. >
  90. Resend
  91. </a>
  92. </Link>
  93. </p>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </>
  102. );
  103. }
  104. export default Otp2;