Files
sysPass/inc/tpl/error.inc
nuxsmin 8814b1479d * [FIX] Fixed account search query.
* [FIX] Fixed "back" button behaviour.
* [FIX] Fixed profile saving on install process.
* [FIX] Fixed DB connection error when config file is deleted.
* [FIX] Fixed password character translation when showing password.
* [FIX] Minor bugfixes.
* [MOD] Improved install process. Fully functional on Debian 8.
* [MOD] No fade in/out when loading ajax content.
* [ADD] Profiles can now be viewed.
2015-07-13 01:58:19 +02:00

21 lines
770 B
PHP

<div id="actions" align="center">
<?php if ($showLogo): ?>
<div id="logo">
<img src="<?php echo $logo; ?>" alt="sysPass logo"/>
</div>
<?php endif; ?>
<?php if (count($errors) > 0): ?>
<ul class="errors round">
<?php foreach ($errors as $err): ?>
<?php if (is_array($err)): ?>
<li class="err_<?php echo \SP\SPException::getExceptionTypeName($err["type"]); ?>">
<strong><?php echo $err['description']; ?></strong>
<?php echo ($err['hint']) ? '<p class="hint">' . $err['hint'] . '</p>' : ''; ?>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>