First working frontend for the login
This commit is contained in:
parent
9c0b57dbf8
commit
514de0e4ae
5 changed files with 64 additions and 0 deletions
29
frontend/src/components/pages/Login.js
Normal file
29
frontend/src/components/pages/Login.js
Normal file
|
@ -0,0 +1,29 @@
|
|||
import React from "react";
|
||||
import "../../App.css";
|
||||
import Footer from "../../Footer";
|
||||
import InputField from "../InputField";
|
||||
import SubmitField from "../SubmitField";
|
||||
|
||||
export default function Login() {
|
||||
return (
|
||||
<>
|
||||
<div className="sitePage">
|
||||
<h1>Login</h1>
|
||||
<form>
|
||||
<InputField
|
||||
LabelName="Benutzername / Kennung"
|
||||
InputType=""
|
||||
InputName="username"
|
||||
/>
|
||||
<InputField
|
||||
LabelName="Passwort"
|
||||
InputType="password"
|
||||
InputName="password"
|
||||
/>
|
||||
<SubmitField LabelName="Einloggen" />
|
||||
</form>
|
||||
</div>
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue