mirror of
https://github.com/GithubOrgProjectPiza/frontend.git
synced 2026-09-07 07:35:59 +02:00
Anmeldepage
Page Mobile weiter
This commit is contained in:
@@ -1,10 +1,22 @@
|
||||
import React, { useState } from "react";
|
||||
import bild from "../paparoy_liste.png";
|
||||
import Eingabefeld from "../Components/eingabefeld";
|
||||
import bild from "../pizza_logo_dark.png";
|
||||
|
||||
function Anmeldepage(props) {
|
||||
return (
|
||||
<div class="sm: grid grid-cols-1 items-center">
|
||||
<img class="w-50 h-50 col-start-1 col-end-1" src={props.bild || bild} alt="Logo"></img>
|
||||
<div class="sm: m-2">
|
||||
<div class="sm: grid grid-cols-5 items-center">
|
||||
<img
|
||||
class="sm:w-60 h-45 p-5 grid col-span-3 col-start-2 place-content-center"
|
||||
src={props.bild || bild}
|
||||
alt="Logo"></img>
|
||||
</div>
|
||||
<br></br>
|
||||
<label class="font-medium leading-tight text-3xl mt-0 mb-2">Anmelden</label>
|
||||
<br></br>
|
||||
<label class="absolute left-0">E-Mail:</label>
|
||||
<Eingabefeld isPassword={false}></Eingabefeld>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
export default Anmeldepage;
|
||||
|
||||
Reference in New Issue
Block a user