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

lock.js 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import Link from "next/link";
  2. function Lock() {
  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">Locked</h4>
  16. </div>
  17. <div className="auth-form card">
  18. <div className="card-body">
  19. <form className="row g-3">
  20. <div className="col-12">
  21. <label className="form-label">
  22. Enter Password
  23. </label>
  24. <input
  25. type="password"
  26. className="form-control"
  27. placeholder="***********"
  28. />
  29. </div>
  30. <div className="text-center mt-4">
  31. <button
  32. type="submit"
  33. className="btn btn-primary btn-block"
  34. >
  35. Submit
  36. </button>
  37. </div>
  38. </form>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </>
  46. );
  47. }
  48. export default Lock;