Fix undefined array key
This commit is contained in:
parent
0d64a2f00d
commit
e2a18dbe7e
1 changed files with 2 additions and 2 deletions
|
@ -137,8 +137,8 @@ $page->navigation();
|
|||
<div class="field">
|
||||
<label>Email</label>
|
||||
|
||||
<div class="ui left icon input<?= $_GET['password-reset'] ? ' disabled' : '' ?>">
|
||||
<?php if ($_GET['password-reset']) { ?>
|
||||
<div class="ui left icon input<?= isset($_GET['password-reset']) ? ' disabled' : '' ?>">
|
||||
<?php if (isset($_GET['password-reset'])) { ?>
|
||||
<input type="email"
|
||||
name="email"
|
||||
placeholder="john.doe@domain.tld"
|
||||
|
|
Loading…
Reference in a new issue