mirror of
https://github.com/Karaka-Management/oms-EventManagement.git
synced 2026-01-11 16:48:42 +00:00
50 lines
2.8 KiB
PHP
Executable File
50 lines
2.8 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\EventManagement
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
|
|
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>
|
|
<table class="layout wf-100">
|
|
<tr><td colspan="3"><label for="iName"><?= $this->getHtml('Name') ?></label>
|
|
<tr><td colspan="2"><input type="text" id="iName" name="name" placeholder="" required><td>
|
|
<tr><td colspan="3"><label for="iDescription"><?= $this->getHtml('Description') ?></label>
|
|
<tr><td colspan="2"><textarea id="iDescription" name="description"></textarea><td>
|
|
<tr><td colspan="3"><label for="iStatus"><?= $this->getHtml('Status') ?></label>
|
|
<tr><td colspan="2"><select id="iStatus" name="status">
|
|
<option value="">
|
|
</select><td>
|
|
<tr><td colspan="3"><label for="iFiles"><?= $this->getHtml('Files') ?></label>
|
|
<tr><td colspan="2"><input type="file" id="iFiles" name="file" multiple><td>
|
|
<tr><td><label for="iStart"><?= $this->getHtml('Start'); ?><label><td><label for="iEnd"><?= $this->getHtml('End'); ?><label><td>
|
|
<tr><td><input type="datetime-local" id="iStart" name="start" required><td><input type="datetime-local" id="iEnd" name="end" required><td>
|
|
<tr><td><label for="iResponsibility"><?= $this->getHtml('Responsibility') ?></label><td><label for="iUser"><?= $this->getHtml('UserGroup') ?></label><td>
|
|
<tr><td><select id="iStatus" name="status">
|
|
<option value="">
|
|
</select>
|
|
<td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" id="iUser" name="user" placeholder=""></span><td><button><?= $this->getHtml('Add', '0', '0'); ?></button>
|
|
<tr><td colspan="3"><label for="iBudget"><?= $this->getHtml('Budget') ?></label>
|
|
<tr><td colspan="2"><input type="text" id="iBudget" name="budget" placeholder=""><td>
|
|
<tr><td colspan="3"><input type="submit" value="<?= $this->getHtml('Create', '0', '0'); ?>">
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|