mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-07 00:46:59 +01:00
* [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.
21 lines
770 B
PHP
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>
|