123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import Link from "next/link";
- function Otp2() {
- return (
- <>
- <div className="authincation section-padding">
- <div className="container h-100">
- <div className="row justify-content-center h-100 align-items-center">
- <div className="col-xl-5 col-md-6">
- <div
- className="alert alert-success fade show d-flex justify-content-between"
- role="alert"
- >
- <span>
- Please enter verification token from your
- device
- </span>
- <span className="c-pointer" data-dismiss="alert">
- <i className="ri-close-line"></i>
- </span>
- </div>
- <div className="mini-logo text-center my-3">
- <Link href="/">
- <a>
- <img src="./images/logo.png" alt="" />
- </a>
- </Link>
- <h4 className="card-title mt-5">
- 2-Step Verification
- </h4>
- </div>
- <div className="auth-form card">
- <div className="card-body">
- <p className="text-center mb-3">
- Enter the verification code generated by
- your phone ending in +xxx xxxxxxxx60.
- </p>
- <form className="row g-3">
- <div className="col-12">
- <div className="input-group">
- <div className="input-group-prepend">
- <span className="input-group-text">
- <i className="ri-smartphone-line"></i>
- </span>
- </div>
- <input
- type="text"
- className="form-control"
- placeholder="verification code"
- />
- </div>
- </div>
- <div className="col-12">
- <div className="text-center">
- <button
- type="submit"
- className="btn btn-primary btn-block"
- >
- Send
- </button>
- </div>
- </div>
- <div className="col-12">
- <div className="form-check form-switch">
- <input
- type="checkbox"
- className="form-check-input"
- id="exampleCheck1"
- />
- <label
- className="form-check-label"
- for="exampleCheck1"
- >
- <small>
- Don't ask me for the
- code again for 30 days
- when I use this
- computer.
- </small>
- </label>
- </div>
- </div>
- </form>
- <div className="new-account mt-3">
- <p>
- Don't get code?
- <Link href="/otp-1">
- <a
- className="text-primary"
- >
- Resend
- </a>
- </Link>
- </p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </>
- );
- }
- export default Otp2;
|