Files
aowow/template/pages/delete.tpl.php
Sarjuuk a48e94cd8b Template/Update (Part 46 - VI)
* account management rework: Delete account
2025-09-25 16:01:06 +02:00

27 lines
668 B
PHP

<?php
namespace Aowow\Template;
$this->brick('header');
?>
<div class="main" id="main">
<div class="main-precontents" id="main-precontents"></div>
<div class="main-contents" id="main-contents">
<?php
$this->brick('announcement');
$this->brick('pageTemplate');
if ($this->inputbox):
$this->brick(...$this->inputbox); // $templateName, [$templateVars]
elseif ($this->confirm):
$this->localizedBrick('confirm-delete-account');
else:
$this->localizedBrick('delete-account');
endif;
?>
</div>
</div><!-- main-contents -->
</div><!-- main -->
<?php $this->brick('footer'); ?>