oms-Messages/Theme/Backend/mail-create.tpl.php
Dennis Eichhorn f351842976
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled
fix permissions
2025-04-02 14:15:05 +00:00

32 lines
1.4 KiB
PHP

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules\Messages
* @copyright Dennis Eichhorn
* @license OMS License 2.2
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
echo $this->data['nav']->render(); ?>
<section class="box w-100">
<div class="inner">
<form>
<table class="layout wf-100">
<tr><td style="width: 1%"><button class="simple"><i class="g-icon">book</i></button><td style="width: 1%">TO<td><input type="text" name="to">
<tr><td style="width: 1%"><button class="simple"><i class="g-icon">book</i></button><td style="width: 1%">CC<td><input type="text" name="cc">
<tr><td style="width: 1%"><button class="simple"><i class="g-icon">book</i></button><td style="width: 1%">BCC<td><input type="text" name="bcc">
<tr><td colspan="2">Subject<td><input type="text" name="subject">
<tr><td><td><td><input type="file" name="files" multiple>
<tr><td><td><td><div class="textarea" contenteditable="true" style="height: 400px;"></div><textarea style="display: none" name="mail"></textarea>
<tr><td><td><td><input type="submit" value="<?= $this->getHtml('Send', '0', '0'); ?>" name="send-mail"> <input type="submit" value="<?= $this->getHtml('Save', '0', '0'); ?>" name="save-mail">
</table>
</form>
</div>
</section>