44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
<div class="modal" role="dialog">
|
|
<div class="modal-background"></div>
|
|
<div class="modal-card has-width-900">
|
|
<header class="modal-card-head">
|
|
<h3 class="modal-card-title">Add Burial Site Type</h3>
|
|
<button
|
|
class="delete is-close-modal-button"
|
|
aria-label="close"
|
|
type="button"
|
|
></button>
|
|
</header>
|
|
<section class="modal-card-body">
|
|
<form id="form--burialSiteTypeAdd">
|
|
<div class="field">
|
|
<label class="label" for="burialSiteTypeAdd--burialSiteType"
|
|
>Burial Site Type</label
|
|
>
|
|
<div class="control">
|
|
<input
|
|
class="input"
|
|
id="burialSiteTypeAdd--burialSiteType"
|
|
name="burialSiteType"
|
|
type="text"
|
|
maxlength="100"
|
|
required
|
|
/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<footer class="modal-card-foot justify-right">
|
|
<button
|
|
class="button is-success"
|
|
type="submit"
|
|
form="form--burialSiteTypeAdd"
|
|
>
|
|
<span class="icon"><i class="fas fa-plus" aria-hidden="true"></i></span>
|
|
<span>Add Burial Site Type</span>
|
|
</button>
|
|
<button class="button is-close-modal-button" type="button">Cancel</button>
|
|
</footer>
|
|
</div>
|
|
</div>
|