153 lines
5.4 KiB
Handlebars
153 lines
5.4 KiB
Handlebars
<div>
|
|
<form id="frm" method="post" action="index.html">
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="name">Product name</label>
|
|
<input
|
|
class="form-control"
|
|
type="text"
|
|
id="name"
|
|
name="name"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="productCode">Product code</label>
|
|
<input
|
|
class="form-control"
|
|
type="text"
|
|
id="productCode"
|
|
name="productCode"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="quantity">Quantity</label>
|
|
<input
|
|
class="form-control"
|
|
type="number"
|
|
id="quantity"
|
|
name="quantity"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="salesOrderNumber">Sales order number</label>
|
|
<input
|
|
class="form-control"
|
|
type="text"
|
|
id="salesOrderNumber"
|
|
name="salesOrderNumber"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="vendorName">Vendor</label>
|
|
<input
|
|
class="form-control"
|
|
type="text"
|
|
id="vendorName"
|
|
name="vendorName"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="purchaseDate">Purchased</label>
|
|
<input
|
|
class="form-control"
|
|
type="date"
|
|
id="purchaseDate"
|
|
name="purchaseDate"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-check">
|
|
<label class="form-check-label" for="renewNoticeSent">
|
|
<input
|
|
class="form-check-input"
|
|
type="checkbox"
|
|
name="renewNoticeSent"
|
|
id="renewNoticeSent"
|
|
/>
|
|
Renew notice sent</label>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="expireDate">Subscription expire</label>
|
|
<input
|
|
class="form-control"
|
|
type="date"
|
|
id="expireDate"
|
|
name="expireDate"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="cancelDate">Cancel date</label>
|
|
<input
|
|
class="form-control"
|
|
type="date"
|
|
id="cancelDate"
|
|
name="cancelDate"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
{{! <div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input class="form-control" type="text" id="email" name="email" value="">
|
|
</div>
|
|
</div> }}
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label for="couponCode">Coupon code</label>
|
|
<input
|
|
class="form-control"
|
|
type="text"
|
|
id="couponCode"
|
|
name="couponCode"
|
|
value=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-12">
|
|
<div class="form-group">
|
|
<label for="notes">ShareIt Order</label>
|
|
<textarea
|
|
class="form-control"
|
|
id="notes"
|
|
name="notes"
|
|
rows="10"
|
|
></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="app-frm-buttons mt-5">
|
|
<button id="btn-save" class="btn btn-success">Save</button>
|
|
<button id="btn-delete" class="btn btn-outline-dark">Delete</button>
|
|
<button
|
|
id="btn-renew"
|
|
class="btn btn-outline-primary"
|
|
>Renew</button>
|
|
</div>
|
|
</form>
|
|
</div> |