sunrise-cms/public/html/contract-editFeeQuantity.html

56 lines
1.7 KiB
HTML

<div class="modal" role="dialog">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<h3 class="modal-card-title">Edit Quantity</h3>
<button
class="delete is-close-modal-button"
aria-label="close"
type="button"
></button>
</header>
<section class="modal-card-body">
<form id="form--contractFeeQuantity">
<input id="contractFeeQuantity--contractId" name="contractId" type="hidden" />
<input id="contractFeeQuantity--feeId" name="feeId" type="hidden" />
<label class="label" for="contractFeeQuantity--quantity"
>Quantity</label
>
<div class="field has-addons">
<div class="control is-expanded">
<input
class="input"
id="contractFeeQuantity--quantity"
name="quantity"
type="number"
value="1"
min="0.1"
max="999.9"
step="0.1"
required
onwheel="return false"
/>
</div>
<div class="control">
<span
class="button is-static"
id="contractFeeQuantity--quantityUnit"
></span>
</div>
</div>
</form>
</section>
<footer class="modal-card-foot justify-right">
<button
class="button is-success"
type="submit"
form="form--contractFeeQuantity"
>
<span class="icon"><i class="fas fa-save" aria-hidden="true"></i></span>
<span>Update Quantity</span>
</button>
<button class="button is-close-modal-button" type="button">Cancel</button>
</footer>
</div>
</div>