New Kundenregistrierung

This commit is contained in:
zha19115 2023-06-24 15:17:45 +02:00
parent 6f8dabbd3f
commit ba6266579d
2 changed files with 32 additions and 6 deletions

View File

@ -6,14 +6,17 @@
<body style='--blazor-load-percentage: 100%; --blazor-load-percentage-text: "100%"; background-color:#C7FFD5;'>
<div class="container col-lg-6 col-md-9 col-sm-12 d-flex flex-column " id="content">
<div class="container col-lg-6 col-md-9 col-sm-12 d-flex flex-column " id="content" style=" padding-left:10%; padding-right:10%;">
<center><h1>Herzlich Willkommen!</h1></center>
<img src="assets/Logo_new.png" class="img" title="logo image">
<form action="Speisekarte">
<input type="submit" value="Zur Speisekarte" class="btn" />
</form>
<button type="submit" id="button1" class="btn">QR-Code einscannen</button>
<input type="text" class="form-control" id="qrcode" placeholder="Zugangscode eintragen" name="qrcode">
<button type="submit" id="button1" class="btn">Bestätigen</button>
</div>
</body>

View File

@ -3,20 +3,29 @@
html, body {
margin: 0px;
padding: 0px;
overflow: hidden;
}
#content {
background-color: #C7FFD1;
padding: 5%;
margin-top: 1%;
border-radius: 10px;
position: center;
}
#button1 {
background-color: #89F9A5;
border-radius: 50px;
margin-bottom: 15px;
}
h1 {
margin: 0px;
padding: 0px;
}
.img {
height: auto;
max-width: 100%;
margin: 10%;
margin: 5%;
}
form {
@ -26,3 +35,17 @@ form {
}
p {
color: grey;
}
form {
margin-bottom: 20px;
margin-top: 5px;
}
.form-control {
border-radius: 50px;
margin-bottom: 5px;
}