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

44 lines
1.3 KiB
HTML

<div class="modal" role="dialog" aria-label="Add Fee Category">
<div class="modal-background"></div>
<div class="modal-card">
<div class="modal-card-head">
<h2 class="modal-card-title">Add Fee Category</h2>
<button
class="delete is-close-modal-button"
aria-label="close"
type="button"
></button>
</div>
<section class="modal-card-body">
<form id="form--feeCategoryAdd">
<div class="field">
<label class="label" for="feeCategoryAdd--feeCategory"
>New Fee Category</label
>
<div class="control">
<input
class="input"
id="feeCategoryAdd--feeCategory"
name="feeCategory"
maxlength="100"
autocomplete="off"
required
/>
</div>
</div>
</form>
</section>
<div class="modal-card-foot justify-right">
<button
class="button is-success"
type="submit"
form="form--feeCategoryAdd"
>
<span class="icon"><i class="fas fa-plus" aria-hidden="true"></i></span>
<span>Add Fee Category</span>
</button>
<button class="button is-close-modal-button" type="button">Cancel</button>
</div>
</div>
</div>