16 lines
579 B
HTML
16 lines
579 B
HTML
<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" 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>
|
|
<button type="button" x-on:click="open = false">Cancel</button>
|
|
<button type="submit">Submit</button>
|
|
</form>
|