38 lines
933 B
HTML
38 lines
933 B
HTML
@use super::base_html;
|
|
|
|
@(shift_id: u32)
|
|
|
|
@:base_html({
|
|
|
|
<form hx-swap="outerHTML" hx-post="/api/drinks">
|
|
<fieldset>
|
|
<input hidden required type="radio" id="two" name="price" value="2" />
|
|
<label for="two">$2</label>
|
|
|
|
<input hidden type="radio" id="three" name="price" value="3" />
|
|
<label for="three">$3</label>
|
|
|
|
<input hidden type="radio" id="five" name="price" value="5" />
|
|
<label for="five">$5</label>
|
|
|
|
<input hidden type="radio" id="eight" name="price" value="8" />
|
|
<label for="eight">$8</label>
|
|
|
|
<input hidden type="radio" id="fifteen" name="price" value="15" />
|
|
<label for="fifteen">$15</label>
|
|
</fieldset>
|
|
|
|
<div>
|
|
<label for="quantity">Quantity: </label>
|
|
<input type="number" id="quantity" name="quantity" step="1" value="1" />
|
|
|
|
<input type="hidden" id="shift_id" name="shift_id" value="@shift_id" />
|
|
<div>
|
|
|
|
<button type="submit">
|
|
submit
|
|
</button>
|
|
</form>
|
|
|
|
})
|