add regisitrierung

added registrierung in mobile view and finished anmeldepage in mobile view
This commit is contained in:
Manuel Prodinger
2022-05-01 10:55:49 +02:00
parent 336f498849
commit ea00cc4c02
4 changed files with 74 additions and 4 deletions
+12 -1
View File
@@ -1,4 +1,5 @@
import React, { useState } from "react";
import ButtonPrimary from "../Components/buttonPrimary";
import Eingabefeld from "../Components/eingabefeld";
import bild from "../pizza_logo_dark.png";
@@ -12,10 +13,20 @@ function Anmeldepage(props) {
alt="Logo"></img>
</div>
<br></br>
<br></br>
<label class="font-medium leading-tight text-3xl mt-0 mb-2">Anmelden</label>
<br></br>
<br></br>
<label class="absolute left-0">E-Mail:</label>
<Eingabefeld isPassword={false}></Eingabefeld>
<Eingabefeld isPassword={false} placeholder="Mail"></Eingabefeld>
<label class="absolute left-0">Passwort:</label>
<Eingabefeld isPassword={true} placeholder="Passwort"></Eingabefeld>
<br></br>
<br></br>
<div class="sm: flex justify-between">
<ButtonPrimary name="Registieren"></ButtonPrimary>
<ButtonPrimary name="Anmelden"></ButtonPrimary>
</div>
</div>
);
}