mirror of
https://github.com/Karaka-Management/oms-Accounting.git
synced 2026-01-11 13:28:40 +00:00
33 lines
1.0 KiB
PHP
Executable File
33 lines
1.0 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\Accounting
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
echo $this->data['nav']->render(); ?>
|
|
|
|
<section class="box w-50">
|
|
<header><h1><?= $this->getHtml('GL'); ?></h1></header>
|
|
<div class="inner">
|
|
<form>
|
|
<table class="layout wf-100">
|
|
<tr><td><label for="iId"><?= $this->getHtml('ID', '0', '0'); ?></label>
|
|
<tr><td><input type="text" id="iId" name="id">
|
|
<tr><td><label for="iName"><?= $this->getHtml('Name'); ?></label>
|
|
<tr><td><input type="text" id="iName" name="name">
|
|
<tr><td><label for="iParent"><?= $this->getHtml('Parent'); ?></label>
|
|
<tr><td><input type="text" id="iParent" name="parent">
|
|
<tr><td><input type="submit" value="<?= $this->getHtml('Create', '0', '0'); ?>" name="create-gl">
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</section>
|