60 lines
1.8 KiB
HTML
60 lines
1.8 KiB
HTML
<div class="modal" role="dialog">
|
|
<div class="modal-background"></div>
|
|
<div class="modal-card" style="width:500px">
|
|
<header class="modal-card-head">
|
|
<h3 class="modal-card-title">
|
|
Update Fee Amount
|
|
</h3>
|
|
<button
|
|
class="delete is-close-modal-button"
|
|
aria-label="close"
|
|
type="button"
|
|
></button>
|
|
</header>
|
|
<section class="modal-card-body">
|
|
<form id="form--feeAmountEdit">
|
|
<input id="feeAmountEdit--feeId" name="feeId" type="hidden" />
|
|
|
|
<p class="mb-2">
|
|
<strong>Fee Category</strong><br />
|
|
<span id="feeAmountEdit--feeCategory"></span>
|
|
</p>
|
|
|
|
<p class="mb-2">
|
|
<strong>Fee Name</strong><br />
|
|
<span id="feeAmountEdit--feeName"></span>
|
|
</p>
|
|
|
|
<div class="field">
|
|
<label class="label" for="feeAmountEdit--feeAmount">Fee Amount</label>
|
|
<div class="control has-icons-left">
|
|
<input
|
|
class="input has-text-right"
|
|
id="feeAmountEdit--feeAmount"
|
|
name="feeAmount"
|
|
type="number"
|
|
step="0.01"
|
|
min="0"
|
|
max="999999.99"
|
|
value="0"
|
|
onwheel="return false"
|
|
required
|
|
/>
|
|
<span class="icon is-small is-left">
|
|
<i class="fas fa-dollar-sign" aria-hidden="true"></i>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<footer class="modal-card-foot justify-right">
|
|
<button class="button is-success" type="submit" form="form--feeAmountEdit">
|
|
<span class="icon"><i class="fas fa-save" aria-hidden="true"></i></span>
|
|
<span>Update Fee Amount</span>
|
|
</button>
|
|
|
|
<button class="button is-close-modal-button" type="button">Cancel</button>
|
|
</footer>
|
|
</div>
|
|
</div>
|