Prevent browser autocompletion of password
Using the `autocomplete="off" attribute
This commit is contained in:
parent
a3f1ddef62
commit
3159c3e230
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
||||||
<section>
|
<section>
|
||||||
<div class="page-header"><h1>Password Share</h1></div>
|
<div class="page-header"><h1>Password Share</h1></div>
|
||||||
<form class="form-horizontal" id="password_create" method="post">
|
<form class="form-horizontal" id="password_create" method="post">
|
||||||
<input type="text" id="password" name="password" autofocus="True" placeholder="Share a Password">
|
<input type="text" id="password" name="password" autofocus="True" placeholder="Share a Password" autocomplete="off">
|
||||||
<select name="ttl">
|
<select name="ttl">
|
||||||
<option>Week</option>
|
<option>Week</option>
|
||||||
<option>Day</option>
|
<option>Day</option>
|
||||||
|
|
Loading…
Reference in a new issue