sunrise-cms/public/html/adminFees-editFeeCategory.html

29 lines
1.3 KiB
HTML

<div class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<h3 class="modal-card-title">
Update Fee Category
</h3>
<button class="delete is-close-modal-button" aria-label="close" type="button"></button>
</header>
<section class="modal-card-body">
<form id="form--feeCategoryEdit">
<input id="feeCategoryEdit--feeCategoryId" name="feeCategoryId" type="hidden" />
<div class="field">
<label class="label" for="feeCategoryEdit--feeCategory">Fee Category</label>
<div class="control">
<input class="input" id="feeCategoryEdit--feeCategory" name="feeCategory" maxlength="100" required />
</div>
</div>
</form>
</section>
<footer class="modal-card-foot justify-right">
<button class="button is-success" type="submit" form="form--feeCategoryEdit">
<span class="icon"><i class="fas fa-plus" aria-hidden="true"></i></span>
<span>Update Fee Category</span>
</button>
<button class="button is-close-modal-button" type="button">Cancel</button>
</footer>
</div>
</div>