sunrise-cms/public/html/lot-editComment.html

87 lines
2.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 Comment</h3>
<button
class="delete is-close-modal-button"
aria-label="close"
type="button"
></button>
</header>
<section class="modal-card-body">
<form id="form--lotCommentEdit">
<input id="lotCommentEdit--lotId" name="lotId" type="hidden" value="" />
<input
id="lotCommentEdit--lotCommentId"
name="lotCommentId"
type="hidden"
value=""
/>
<div class="field">
<label class="label" for="lotCommentEdit--lotComment">Comment</label>
<div class="control">
<textarea
class="textarea"
id="lotCommentEdit--lotComment"
name="lotComment"
required
></textarea>
</div>
</div>
<div class="columns">
<div class="column">
<div class="field">
<label class="label" for="lotCommentEdit--lotCommentDateString"
>Comment Date</label
>
<div class="control has-icons-left">
<input
class="input"
id="lotCommentEdit--lotCommentDateString"
name="lotCommentDateString"
type="date"
required
/>
<span class="icon is-left">
<i class="fas fa-calendar" aria-hidden="true"></i>
</span>
</div>
</div>
</div>
<div class="column">
<div class="field">
<label class="label" for="lotCommentEdit--lotCommentTimeString"
>Comment Time</label
>
<div class="control has-icons-left">
<input
class="input"
id="lotCommentEdit--lotCommentTimeString"
name="lotCommentTimeString"
type="time"
required
/>
<span class="icon is-left">
<i class="fas fa-clock" aria-hidden="true"></i>
</span>
</div>
</div>
</div>
</div>
</form>
</section>
<footer class="modal-card-foot justify-right">
<button
class="button is-success"
type="submit"
form="form--lotCommentEdit"
>
<span class="icon"><i class="fas fa-save" aria-hidden="true"></i></span>
<span>Update Comment</span>
</button>
<button class="button is-close-modal-button" type="button">Cancel</button>
</footer>
</div>
</div>