mirror of
https://github.com/Karaka-Management/oms-Marketing.git
synced 2026-01-18 12:28:40 +00:00
44 lines
1.7 KiB
PHP
Executable File
44 lines
1.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\Marketing
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @var \phpOMS\Views\View $this
|
|
*/
|
|
|
|
echo $this->getData('nav')->render(); ?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-6">
|
|
<section class="box wf-100">
|
|
<header><h1><?= $this->getHtml('Event'); ?></h1></header>
|
|
<div class="inner">
|
|
<form action="<?= \phpOMS\Uri\UriFactory::build('{/api}helper/template'); ?>" method="post">
|
|
<table class="layout wf-100">
|
|
<tbody>
|
|
<tr><td colspan="2"><label for="iTitle"><?= $this->getHtml('Type'); ?></label>
|
|
<tr><td colspan="2"><select></select>
|
|
<tr><td colspan="2"><label for="iBudget"><?= $this->getHtml('Title'); ?></label>
|
|
<tr><td colspan="2"><input type="text">
|
|
<tr><td colspan="2"><label for="iBudget"><?= $this->getHtml('Description'); ?></label>
|
|
<tr><td colspan="2"><textarea></textarea>
|
|
<tr><td><label for="iTitle"><?= $this->getHtml('Start'); ?></label><td><label for="iTitle"><?= $this->getHtml('End'); ?></label>
|
|
<tr><td><input type="datetime-local"><td><input type="datetime-local">
|
|
<tr><td colspan="2"><label for="iBudget"><?= $this->getHtml('Budget'); ?></label>
|
|
<tr><td colspan="2"><input type="text" id="iBudget" name="budget" placeholder="">
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|