mirror of
https://github.com/Karaka-Management/oms-Media.git
synced 2026-01-11 17:08:40 +00:00
30 lines
753 B
PHP
30 lines
753 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\News
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Uri\UriFactory;
|
|
|
|
?>
|
|
|
|
<section id="mediaFile" class="portlet">
|
|
<div class="portlet-body">
|
|
<form id="mediaPassword" method="GET" action="<?= UriFactory::build('{%}&csrf={$CSRF}'); ?>">
|
|
<div class="form-group">
|
|
<label for="iPassword"><?= $this->getHtml('Password'); ?></label>
|
|
<input id="iPassword" type="password" name="password">
|
|
</div>
|
|
|
|
<input type="submit" value="<?= $this->getHtml('Submit', '0', '0'); ?>">
|
|
</form>
|
|
</div>
|
|
</section>
|