Browse Source

fixes for login interface

pull/9/head
Aaron Parecki 8 years ago
parent
commit
dc9437a35d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      views/login.php

+ 2
- 2
views/login.php View File

@ -25,7 +25,7 @@
</h2>
<?php if(isset($error)): ?>
<div class="ui warning message">
<div class="ui warning message" style="word-wrap: break-word;">
<div class="header"><?= $error ?></div>
<?= $error_description ?>
</div>
@ -39,7 +39,7 @@
<input type="url" name="url" placeholder="Your Web Address">
</div>
</div>
<input type="hidden" name="return_to" value="<?= $return_to ?>">
<input type="hidden" name="return_to" value="<?= isset($return_to) ? $return_to : '' ?>">
<button class="ui fluid large teal submit button">Login</button>
</div>

Loading…
Cancel
Save