mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
12 lines
471 B
JavaScript
12 lines
471 B
JavaScript
import Button from "./utill/button";
|
|
import TextInput from "./utill/textInput";
|
|
|
|
export default function LoginForm() {
|
|
return (
|
|
<form className="bg-white shadow-md max-w mx-auto p-5 mx-10 flex flex-col space-y-4">
|
|
<h1 className="text-2xl font-bold text-center text-gray-700">Connexion équipe</h1>
|
|
<TextInput placeholder="Code d'équipe" name="team-id" />
|
|
<Button type="submit">Se connecter</Button>
|
|
</form>
|
|
)
|
|
} |