flip-cohen/templates/preorder_index.html

53 lines
2.3 KiB
HTML
Raw Normal View History

2022-05-02 16:30:13 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Flip Noorman | Love It | Preorder</title>
<meta name="description" content="Na zijn succesvolle tournee met het werk van Leonard Cohen is Flip Noorman terug met een eigen avondvullende show. Love it">
<link rel="stylesheet" href="/static/css/index.css?v4">
<link rel="icon" type="image/png" href="static/img/favicon.png" />
</head>
<body>
<nav class="nav always-open">
<div class="nav__section nav__left">
<a href="/">Love It!</a>
</div>
<div class="nav__section nav__right">
<a href="https://mailchi.mp/fa9b30c6bd38/flip-noorman-nieuwsbrief" class="c-nav-invert-button" target="_blank" ref="no-follow">Nieuwsbrief</a>
<a href="/albums">Albums</a>
</div>
</nav>
<div class="c-page-section" id="" style="padding-top: 150px; min-height: calc(100vh - 75px)">
<div class="c-page-section__content">
<h1 class="t-h1">
Bestel nu
</h1>
<p class="t-p1 o-margin-large">
Pre-order de Love it CD nu!<br>
En ontvang alvast een liedje in je mail.
<p>
<form action="/preorder/bestellen" method="POST">
{{range .products}}
<div class="c-form-row">
<div class="c-product">
<label class="c-label" for="product-{{.ID}}" style="display: block;">{{.Name}} | {{formatMoney .Price}} per stuk</label>
<div class="c-number-input"><input class="c-input" type="number" value="1" id="product-{{.ID}}" name="product[{{.ID}}]"> <span>Stuks</span></div>
</div>
</div>
{{end}}
<div class="c-form-row">
<button class="c-submit">BESTELLEN</button>
</div>
</form>
</div>
</div>
<footer class="c-footer">
<span>© {{.nowYear}} Flip Noorman </span>
<span>info@flipnoorman.nl</span>
</footer>
<script src="/static/js/shared.js"></script>
</body>
</html>