No Description
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.

signup.js 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import Link from "next/link";
  2. import SignupForm from "./../components/form/SignupForm";
  3. import { COMPANY_NAME } from "../helpers/helpers";
  4. function Signin() {
  5. return (
  6. <>
  7. <div className="authincation section-padding auth-bg">
  8. <div className="container h-100">
  9. <div className="row justify-content-center h-100 align-items-center">
  10. <div className="col-xl-5 col-md-6">
  11. <div className="mini-logo d-flex justify-content-center align-items-center flex-column text-center my-4">
  12. <Link href="/">
  13. <div className="logocontainer">
  14. <img src="./images/kerala/keralawater.png" alt={COMPANY_NAME} />
  15. </div>
  16. </Link>
  17. {/* <h4 className="card-title mt-5 w-100 d-flex justify-content-center align-items-center gap-2">
  18. <div> Sign in as</div>
  19. <div>
  20. <select className="form-control">
  21. <option>Consumer</option>
  22. <option>Employee</option>
  23. <option>Plumber</option>
  24. </select>
  25. </div>
  26. </h4> */}
  27. </div>
  28. <div className="auth-form card">
  29. <div className="card-body">
  30. <SignupForm/>
  31. <p className="mt-3 mb-0">
  32. Don't have an account?
  33. <Link href="/signup">
  34. <a className="text-primary">Sign up</a>
  35. </Link>
  36. </p>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </>
  44. );
  45. }
  46. export default Signin;