oms-Calendar/Theme/Backend/Components/Event/popup.tpl.php
Dennis Eichhorn b3cd6855ec
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:04 +00:00

27 lines
1.4 KiB
PHP

<template id="calendar-event-popup-tpl">
<section id="calendar-event-popup" class="box w-50" style="z-index: 9; position: absolute; margin: 0 auto; left: 50%; top: 50%; transform: translate(-50%, -50%);">
<header><h1><?= $this->getHtml('Event', 'Calendar'); ?></h1></header>
<div class="inner">
<form>
<table class="layout">
<tr><td><label for="iTitle">Title</label>
<tr><td><input type="text" id="" name="">
<tr><td><label for="iTitle">Description</label>
<tr><td><textarea></textarea>
<tr><td><label for="iTitle">To</label>
<tr><td><input type="text" id="" name="">
<tr><td><label for="iTitle">Files</label>
<tr><td><input type="text" id="" name="files">
<tr><td><button type="button" data-action='[
{
"listener": "click", "action": [
{"key": 1, "type": "dom.remove", "tpl": "calendar-event-popup", "aniOut": "fadeOut"}
]
}
]'><?= $this->getHtml('Close', 'Calendar'); ?></button>
</table>
</form>
</div>
</section>
</template>