organization
This commit is contained in:
parent
8c3611e859
commit
1517b2eaf4
5 changed files with 38 additions and 30 deletions
24
templates/order/get_new.html
Normal file
24
templates/order/get_new.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<form x-show="open" hx-post="order/new" hx-swap="outerHTML">
|
||||
<div>
|
||||
<label for="firstname">First Name</label>
|
||||
<input type="text" id="firstname" name="firstname" required value="">
|
||||
</div>
|
||||
<div>
|
||||
<label for="lastname">Last Name</label>
|
||||
<input type="text" id="lastname" name="lastname" value="">
|
||||
</div>
|
||||
<div>
|
||||
<label for="phone">Phone</label>
|
||||
<input type="tel" id="phone" name="phone" value="">
|
||||
</div>
|
||||
<div>
|
||||
<label for="location">Location</label>
|
||||
<input type="text" id="location" name="location" value="">
|
||||
</div>
|
||||
<div>
|
||||
<label for="paid">Paid</label>
|
||||
<input type="number" id="paid" name="paid" step="0.01" min="0" value="">
|
||||
</div>
|
||||
<button type="button" x-on:click="open = false">Cancel</button>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
Loading…
Add table
Add a link
Reference in a new issue