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); ...@@ -123,7 +123,8 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info);
Username Username
</td> </td>
<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> &nbsp;<span class="error">&nbsp;<?php echo $errors['userid']; ?>&nbsp;</span>
</td> </td>
</tr> </tr>
...@@ -132,7 +133,8 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info); ...@@ -132,7 +133,8 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info);
Password Password
</td> </td>
<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> &nbsp;<span class="error">&nbsp;<?php echo $errors['passwd']; ?>&nbsp;</span>
<br><em><?php echo $passwdtxt; ?></em> <br><em><?php echo $passwdtxt; ?></em>
</td> </td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment