mirror of
https://github.com/Karaka-Management/oms-Comments.git
synced 2026-01-16 10:38:42 +00:00
17 lines
741 B
PHP
17 lines
741 B
PHP
<?php
|
|
|
|
use phpOMS\Uri\UriFactory;
|
|
?>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="portlet">
|
|
<form id="commentCreate" method="PUT" action="<?= UriFactory::build('{/api}comment/list?id={!#commentCreate [name=comment]}&csrf={$CSRF}'); ?>">
|
|
<div class="portlet-head">Create Comment</div>
|
|
<div class="portlet-body">
|
|
<textarea name="comment">For writing a new comment... of course this is just a placeholder</textarea>
|
|
</div>
|
|
<div class="portlet-foot"><input type="submit" name="createButton" id="iCreateButton" value="<?= $this->getHtml('Create', '0', '0'); ?>"></div>
|
|
</form>
|
|
</section>
|
|
</div>
|
|
</div>
|