Added Summernote WYSIWYG to client portal

This commit is contained in:
johnnyq
2023-03-12 11:02:09 -04:00
parent c9dfb1ef6a
commit 58d058e62c
5 changed files with 25 additions and 3 deletions

View File

@@ -76,9 +76,9 @@ if (isset($_GET['id']) && intval($_GET['id'])) {
<form action="portal_post.php" method="post">
<input type="hidden" name="ticket_id" value="<?php echo $ticket_id ?>">
<div class="form-group">
<textarea class="form-control" name="comment" placeholder="Add comments.."></textarea>
<textarea class="form-control summernote" name="comment" placeholder="Add comments.."></textarea>
</div>
<button type="submit" class="btn btn-primary" name="add_ticket_comment">Save reply</button>
<button type="submit" class="btn btn-primary" name="add_ticket_comment">Reply</button>
</form>
<?php }