Files
kitcheninv/templates/product_create.gohtml
2025-08-31 12:12:04 +02:00

18 lines
839 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{define "title"}}Produkt anlegen Kücheninventar{{end}}
{{define "content"}}
<section class="card">
<h2>Neues Produkt</h2>
<form method="post" enctype="multipart/form-data" action="/products/create">
<div class="form-grid">
<label>Name*<input required name="name"/></label>
<label>Hersteller<input name="manufacturer"/></label>
<label>Größe / Inhalt<input name="size" placeholder="z.B. 500 g"/></label>
<label>Bevorzugter Händler<input name="preferred_vendor" placeholder="z.B. REWE"/></label>
<label>Mindestbestand<input type="number" min="0" name="min_stock" value="0"/></label>
<label>Bild (Datei)<input type="file" name="image_file" accept="image/*"/></label>
<label>Oder Bild-URL<input type="url" name="image_url" placeholder="https://…"/></label>
</div>
<button class="btn">Anlegen</button>
</form>
</section>
{{end}}