mirror of
https://github.com/Karaka-Management/oms-Comments.git
synced 2026-01-14 01:28:42 +00:00
18 lines
767 B
PHP
Executable File
18 lines
767 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
|
|
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>
|