Skip to content

Commit

Permalink
Feat(front-end):Implemented the User login frontend.
Browse files Browse the repository at this point in the history
  • Loading branch information
Motouom committed Apr 18, 2024
1 parent e4c1d51 commit 85dfd72
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions power-pay-frontend/src/components/UserLogin.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
const UserLogin: React.FC = () => {
return (
<div className="flex justify-center items-center mb-34 bg-800 text-black text-sm">
<div className="text-lg text-center text-black-950 font-bold font-black pb-5 absolute inset-x-0 top-12">LOGIN . . .</div>
<div className="input-area">
<form className="max-w-sm mx-auto flex rounded-lg w-80 m-auto text-lg absolute inset-x-0">
<input type="number" className="text-lg text-center rounded-full w-80 p-2.5 bg-red-50 dark:placeholder-gray-400 dark:text-black required" placeholder="Phone Number" required />
</form>
</div>
<div className="pt-12">
<button className="rounded-full w-80 m-auto px-4 py-2 my-16 text-white bg-blue-950 hover:border-blue-950 text-lg absolute inset-x-0 bottom-12">
Confirm
</button>
<button className="rounded-full w-80 m-auto px-4 py-2 text-white bg-blue-950 text-lg absolute inset-x-0 bottom-12">
Register
</button>
</div>
</div>
);
};

export default UserLogin;

0 comments on commit 85dfd72

Please sign in to comment.