mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-01-20 12:58:40 +00:00
fix tests
This commit is contained in:
parent
46612ada50
commit
66cab3dfd3
|
|
@ -1,4 +1,5 @@
|
|||
<?php declare(strict_types=1);
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
use phpOMS\Router\RouteVerb;
|
||||
|
||||
|
|
|
|||
|
|
@ -23,6 +23,6 @@ use phpOMS\Uri\UriFactory;
|
|||
</ul>
|
||||
</nav>
|
||||
<div id="search">
|
||||
<input type="text">
|
||||
<input type="text" name="search">
|
||||
</div>
|
||||
</header>
|
||||
|
|
@ -348,7 +348,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
</div>
|
||||
|
||||
<div class="more-container">
|
||||
<input id="more-customer-sales" type="checkbox">
|
||||
<input id="more-customer-sales" type="checkbox" name="more-container">
|
||||
<label for="more-customer-sales">
|
||||
<span>Advanced</span>
|
||||
<i class="fa fa-chevron-right expand"></i>
|
||||
|
|
|
|||
|
|
@ -25,17 +25,17 @@ echo $this->getData('nav')->render(); ?>
|
|||
<form action="<?= \phpOMS\Uri\UriFactory::build('{/api}helper/template'); ?>" method="post">
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><td><label for="iTitle"><?= $this->getHtml('Department'); ?></label>
|
||||
<tr><td><select></select>
|
||||
<tr><td><label for="iTitle"><?= $this->getHtml('Topic'); ?></label>
|
||||
<tr><td><select></select>
|
||||
<tr><td><label for="iDepartment"><?= $this->getHtml('Department'); ?></label>
|
||||
<tr><td><select id="iDepartment" name="department"></select>
|
||||
<tr><td><label for="iTopic"><?= $this->getHtml('Topic'); ?></label>
|
||||
<tr><td><select id="iTopic" name="topic"></select>
|
||||
<tr><td><label for="iTitle"><?= $this->getHtml('Title'); ?></label>
|
||||
<tr><td><input id="iTitle" name="name" type="text" required>
|
||||
<tr><td><label for="iTitle"><?= $this->getHtml('Description'); ?></label>
|
||||
<tr><td><input id="iDescription" name="name" type="text" required>
|
||||
<tr><td><label for="iDescription"><?= $this->getHtml('Description'); ?></label>
|
||||
<tr><td><textarea required></textarea>
|
||||
<tr><td><label for="iFile"><?= $this->getHtml('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->getHtml('Create', '0', '0'); ?>">
|
||||
<tr><td><input type="submit" value="<?= $this->getHtml('Create', '0', '0'); ?>" name="create-ticket">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
<?php declare(strict_types=1);
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
// Modules/tests
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user