|
1 | 1 | import React from "react";
|
| 2 | +import GenderRadio from "./GenderRadio"; |
2 | 3 |
|
3 | 4 | export default function Signup() {
|
4 |
| - return <div>Signup</div>; |
| 5 | + return ( |
| 6 | + <div className="flex flex-col justify-center items-center minw-96 mx-auto"> |
| 7 | + <div className="h-full w-full bg-gray-500 rounded-md bg-clip-padding px-16 backdrop-filter backdrop-blur-sm bg-opacity-20 border border-gray-100 p-12"> |
| 8 | + <h1 className="text-3xl font-semibold text-center text-gray-300"> |
| 9 | + Sign up |
| 10 | + </h1> |
| 11 | + <form> |
| 12 | + <label htmlFor="Fullname" className="label "> |
| 13 | + <span className="text-base label text">FULL NAME</span> |
| 14 | + </label> |
| 15 | + <label className="w-full h-10 p-2 input-bordered input hover:border-blue-300"> |
| 16 | + <i class="fa-solid fa-circle-user mr-3"></i> |
| 17 | + <input id="Fullname" type="text" placeholder="John Doe" /> |
| 18 | + </label> |
| 19 | + <label htmlFor="Username" className="label pu-2"> |
| 20 | + <span className="text-base label text">Username</span> |
| 21 | + </label> |
| 22 | + <label className="w-full h-10 p-2 input-bordered input hover:border-blue-300"> |
| 23 | + <i class="fa-solid fa-user mr-3"></i> |
| 24 | + <input id="Username" type="text" placeholder="John123" /> |
| 25 | + </label> |
| 26 | + <label htmlFor="Password" className="label pu-2"> |
| 27 | + <span className="text-base label text">Password</span> |
| 28 | + </label> |
| 29 | + <label className="w-full h-10 p-2 input-bordered input hover:border-blue-300"> |
| 30 | + <i class="fa-solid fa-circle-user mr-3"></i> |
| 31 | + <input id="Password" type="text" placeholder="Enter password" /> |
| 32 | + </label> |
| 33 | + <label htmlFor="confirmPassword" className="label pu-2"> |
| 34 | + <span className="text-base label text">Confirm Password</span> |
| 35 | + </label> |
| 36 | + <label className="w-full h-10 p-2 input-bordered input hover:border-blue-300"> |
| 37 | + <i class="fa-solid fa-circle-user mr-3"></i> |
| 38 | + <input |
| 39 | + id="confirmPassword" |
| 40 | + type="text" |
| 41 | + placeholder="Reenter password" |
| 42 | + /> |
| 43 | + </label> |
| 44 | + <GenderRadio /> |
| 45 | + <a href="#" className="link link-primary"> |
| 46 | + Already Have An Account? |
| 47 | + </a> |
| 48 | + <div className="mt-3"> |
| 49 | + <button className="btn btn-outline btn-primary">SUBMIT</button> |
| 50 | + </div> |
| 51 | + </form> |
| 52 | + </div> |
| 53 | + </div> |
| 54 | + ); |
5 | 55 | }
|
0 commit comments