mirror of
https://github.com/yummy4friends/y4f.git
synced 2024-12-30 23:37:09 +01:00
Start
This commit is contained in:
parent
e181c13ac2
commit
992c300458
32
Shared/Yummy-Punkte.razor
Normal file
32
Shared/Yummy-Punkte.razor
Normal file
@ -0,0 +1,32 @@
|
||||
@page "/Bestellabschluss"
|
||||
|
||||
<body>
|
||||
<div class="container col-lg-5 col-md-9 col-sm-12 d-flex flex-column " id="content">
|
||||
<p>Sie haben derzeit <b>1 Yummy-Punkt(e)</b></p>
|
||||
<p class="text">Bei einem Mindestbestellwert von 8€ erhalten Sie ein Yummy-Punkt.
|
||||
Ab der 10ten Bestellung gibt es einen Rabatt zu Ihrer nächsten Bestellung.</p>
|
||||
|
||||
<div class="img" >
|
||||
@for(int i = 0; i < 10; i++)
|
||||
{
|
||||
<img src="assets/White-Circle.png ">
|
||||
}
|
||||
<br>
|
||||
</div>
|
||||
|
||||
<p class="text">Achtung: Bitte beachten Sie, dass keine online Bezahlung zur Verfügung steht.
|
||||
Diese dient nur zur Vorbestellung und muss selbst abgeholt werden.</p>
|
||||
|
||||
<div class="button">
|
||||
<form id="button1" action="Warenkorb">
|
||||
<input type="submit" value="Zurück" class="btn">
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
@code {
|
||||
|
||||
|
||||
}
|
40
Shared/Yummy-Punkte.razor.css
Normal file
40
Shared/Yummy-Punkte.razor.css
Normal file
@ -0,0 +1,40 @@
|
||||
body, html {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 20%;
|
||||
height: auto;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.text {
|
||||
color: grey;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.button {
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#button1, #button2 {
|
||||
margin: 10px;
|
||||
display: inline-block;
|
||||
border-radius: 50px;
|
||||
}
|
||||
|
||||
#button1 {
|
||||
background-color: #F9BE89;
|
||||
}
|
||||
|
||||
#button2 {
|
||||
background-color: #89F9A5;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user