mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
added a form element and a map
This commit is contained in:
12
traque-front/components/team/loginForm.jsx
Normal file
12
traque-front/components/team/loginForm.jsx
Normal file
@@ -0,0 +1,12 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user