Files
TIF22A_AnwProjekt_B/anwendung/src/Tests/Login.jsx
T
2023-05-14 15:27:32 +02:00

22 lines
955 B
React

import {useState} from "react";
import Button from "@/components/Button";
export default function Login() {
return (
<div className="border">
<login className={"login-container"}>
<p className={"font-big-fat placement"}>Login</p>
<div className={"placement"}>
<br/>
<p className={"font-kinda-big"}>Username</p>
<input type="text" placeholder="Type here" className="input input-bordered input-sm w-full max-w-xs"/>
<br/>
<p className={"font-kinda-big"}>Password</p>
<input type="text" placeholder="Type here" className="input input-bordered input-sm w-full max-w-xs"/>
</div>
<Button text={"Login"} color={"#e2001a"} width={"25px"}/>
</login>
</div>
);
}