Skip to content
Snippets Groups Projects
Commit 5137e00d authored by Jared Hancock's avatar Jared Hancock
Browse files

ui: Disable autocomplete on email login settings

parent aaf1113a
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,8 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info);
Username
</td>
<td>
<input type="text" size="35" name="userid" value="<?php echo $info['userid']; ?>">
<input type="text" size="35" name="userid" value="<?php echo $info['userid']; ?>"
autocomplete="off" autocorrect="off">
&nbsp;<span class="error">&nbsp;<?php echo $errors['userid']; ?>&nbsp;</span>
</td>
</tr>
......@@ -132,7 +133,8 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info);
Password
</td>
<td>
<input type="password" size="35" name="passwd" value="<?php echo $info['passwd']; ?>">
<input type="password" size="35" name="passwd" value="<?php echo $info['passwd']; ?>"
autocomplete="off">
&nbsp;<span class="error">&nbsp;<?php echo $errors['passwd']; ?>&nbsp;</span>
<br><em><?php echo $passwdtxt; ?></em>
</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment