mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-01-11 17:18:40 +00:00
42 lines
1.7 KiB
PHP
42 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.0
|
|
*
|
|
* @category TBD
|
|
* @package TBD
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @copyright 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
/**
|
|
* @var \phpOMS\Views\View $this
|
|
*/
|
|
echo $this->getData('nav')->render(); ?>
|
|
|
|
<section class="box w-50">
|
|
<header><h1><?= $this->l11n->lang['Support']['Ticket'] ?></h1></header>
|
|
<div class="inner">
|
|
<form action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/reporter/template'); ?>" method="post">
|
|
<table class="layout wf-100">
|
|
<tbody>
|
|
<tr><td><label for="iTitle"><?= $this->l11n->lang['Support']['Department'] ?></label>
|
|
<tr><td><select></select>
|
|
<tr><td><label for="iTitle"><?= $this->l11n->lang['Support']['Topic'] ?></label>
|
|
<tr><td><select></select>
|
|
<tr><td><label for="iTitle"><?= $this->l11n->lang['Support']['Title'] ?></label>
|
|
<tr><td><input id="iTitle" name="name" type="text" required>
|
|
<tr><td><label for="iTitle"><?= $this->l11n->lang['Support']['Description'] ?></label>
|
|
<tr><td><textarea required></textarea>
|
|
<tr><td><label for="iFile"><?= $this->l11n->lang['Support']['Files'] ?></label>
|
|
<tr><td><input id="iFile" name="fileVisual" type="file" multiple><input id="iFileHidden" name="files" type="hidden">
|
|
<tr><td><input type="submit" value="<?= $this->l11n->lang[0]['Create'] ?>">
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</section>
|