Skip to content

Commit a8c1aab

Browse files
authored
Merge pull request #103 from TheUniverseofCoding/f/remove-autocomplete
F/remove autocomplete
2 parents b2e1fed + 2ad9675 commit a8c1aab

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

client/components/QuestionDisplay/QuestionForm.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ class QuestionForm extends Component {
8484
value={ description }
8585
name="description"
8686
className="form-input"
87+
autocomplete="off"
8788
onChange={ this.handleDescriptionChange }
8889
/>
8990
</div>

client/components/auth-form.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ render(){
3636
<div className="field">
3737
<label htmlFor="email" className="label">> Email</label>
3838
<div className="control">
39-
<input name="email" type="email" className="input" required/>
39+
<input name="email" type="email" className="input" autocomplete="off" required/>
4040
</div>
4141
</div>
4242
<div className="field">
4343
<label htmlFor="password" className="label">> Password</label>
4444
<div className="control">
45-
<input name="password" type="password" minLength="3" className="input" required/>
45+
<input name="password" type="password" minLength="3" className="input" autocomplete="off" required/>
4646
</div>
4747
</div>
4848
<div className="field is-grouped">

0 commit comments

Comments
 (0)