estatesfunding/ef-ui/src/components/Register.jsx

192 lines
7.7 KiB
JavaScript

import "../register.css";
import Footer from "./Footer";
import Navbar from "./Navbar";
import 'primeicons/primeicons.css';
const Register = () => {
return (
<>
<Navbar />
<br /><br /><br /><br /><br />
<section
className="py-19 py-md-5 py-xl-8"
style={{ minHeight: "100vh", backgroundColor: "#FFFFFF" }}
>
<div className="container-fluid px-0">
<div className="row gy-4 align-items-center justify-content-center">
<div className="col-12 col-md-6 col-xl-20 text-center text-md-start">
{/* <span className="pi pi-dollar" style={{ fontSize: '5rem', color:"#fda417" }} /> */}
<i className="fa fa-dollar" style={{ fontSize: '5rem', color:"#fda417" }} aria-hidden="true" />
<div className="text-bg-primary">
<div className="px-4">
<hr className="border-primary-subtle mb-4" />
<h2 className="h1 mb-4">
Empower your investors
</h2>
<p className="lead mb-5">
A beautiful, easy-to-use, and secure Investor Portal that gives your investors everything they may need
</p>
<div className="text-endx">
<svg
xmlns="http://www.w3.org/2000/svg"
width={48}
height={48}
fill="currentColor"
className="bi bi-grip-horizontal"
viewBox="0 0 16 16"
>
<path d="M2 8a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2z" />
</svg>
</div>
</div>
</div>
</div>
<div className="col-12 col-md-6 col-xl-5">
<div className="card border-0 rounded-4 shadow-lg" style={{ width: "100%" }}>
<div className="card-body p-3 p-md-4 p-xl-5">
<div className="row">
<div className="col-12">
<div className="mb-4">
<h2 className="h3">Registration</h2>
<h3 className="fs-6 fw-normal text-secondary m-0">
Enter your details to register
</h3>
</div>
</div>
</div>
<form action="#!">
<div className="row gy-3 overflow-hidden">
<div className="col-12">
<div className="form-floating mb-3">
<input
type="text"
className="form-control"
name="firstName"
id="firstName"
placeholder="First Name"
required
/>
<label htmlFor="firstName" className="form-label">
First Name
</label>
</div>
</div>
<div className="col-12">
<div className="form-floating mb-3">
<input
type="text"
className="form-control"
name="lastName"
id="lastName"
placeholder="Last Name"
required
/>
<label htmlFor="lastName" className="form-label">
Last Name
</label>
</div>
</div>
<div className="col-12">
<div className="form-floating mb-3">
<input
type="email"
className="form-control"
name="email"
id="email"
placeholder="name@example.com"
required
/>
<label htmlFor="email" className="form-label">
Email
</label>
</div>
</div>
<div className="col-12">
<div className="form-floating mb-3">
<input
type="password"
className="form-control"
name="password"
id="password"
placeholder="Password"
required
/>
<label htmlFor="password" className="form-label">
Password
</label>
</div>
</div>
<div className="col-12">
<div className="form-check">
<input
className="form-check-input"
type="checkbox"
name="iAgree"
id="iAgree"
required
/>
<label
className="form-check-label text-secondary"
htmlFor="iAgree"
>
I agree to the{" "}
<a
href="#!"
className="link-primary text-decoration-none"
>
terms and conditions
</a>
</label>
</div>
</div>
<div className="col-12">
<div className="d-grid">
<button
className="btn btn-primary btn-lg"
type="submit"
style={{ backgroundColor: "#fda417", border:"#fda417" }}
>
Sign up
</button>
</div>
</div>
</div>
</form>
<div className="row">
<div className="col-12">
<div className="d-flex gap-2 gap-md-4 flex-column flex-md-row justify-content-md-end mt-4">
<p className="m-0 text-secondary text-center">
Already have an account?{" "}
<a
href="#!"
className="link-primary text-decoration-none"
>
Sign in
</a>
</p>
</div>
</div>
</div>
<div className="row">
<div className="col-12"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<Footer />
</>
);
};
export default Register;