* \n to PHP_EOL * add phpdoc for autocomplete * try to unify indentations * stop mixing quotation marks if possible
17 lines
447 B
PHP
17 lines
447 B
PHP
<?php
|
|
namespace Aowow\Template;
|
|
?>
|
|
|
|
<div class="pad3"></div>
|
|
|
|
<div class="inputbox">
|
|
<h1><?=$head ?? ''; ?></h1>
|
|
<div id="inputbox-error"><?=$error ?? ''; ?></div>
|
|
|
|
<?php if ($message ?? ''): ?>
|
|
<div style="text-align: center; font-size: 110%"><?=$message; ?></div>
|
|
<?php else: ?>
|
|
<div class="clear"></div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|