y4f/Shared/Yummy-Punkte.razor

30 lines
762 B
Plaintext
Raw Normal View History

2023-05-13 20:25:14 +02:00
@page "/Yummy-Punkte"
2023-05-13 18:43:48 +02:00
<body>
<div class="container col-lg-5 col-md-9 col-sm-12 d-flex flex-column " id="content">
2023-05-13 20:25:14 +02:00
<h4><b>Ihre Yummy-Punkte</b></h4>
2023-05-13 18:43:48 +02:00
<div class="img" >
@for(int i = 0; i < 10; i++)
{
<img src="assets/White-Circle.png ">
}
<br>
</div>
2023-05-13 20:25:14 +02:00
<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>
2023-05-13 18:43:48 +02:00
<div class="button">
2023-05-13 20:25:14 +02:00
<form id="button1" action="/">
2023-05-13 18:43:48 +02:00
<input type="submit" value="Zurück" class="btn">
</form>
</div>
</div>
</body>
@code {
}