Skip to content

Commit

Permalink
removing autocomplete from input fields
Browse files Browse the repository at this point in the history
  • Loading branch information
devonhackley committed Apr 19, 2019
1 parent b8d18dd commit 38d9693
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions createquiz.html
Expand Up @@ -31,7 +31,7 @@ <h2>Questions in Current Quiz:</h2>
<ol id="currentQuizList"></ol>
</section>

<form id="newQuizForm" class="form-container">
<form id="newQuizForm" class="form-container" autocomplete="off">
<fieldset>

<legend>+ New Quiz...</legend>
Expand All @@ -46,7 +46,7 @@ <h2>Questions in Current Quiz:</h2>

</form>

<form id="newQuestionForm" class="form-container">
<form id="newQuestionForm" class="form-container" autocomplete="off">
<fieldset>

<legend>+ New Question...</legend>
Expand Down
2 changes: 1 addition & 1 deletion gamestart.html
Expand Up @@ -26,7 +26,7 @@ <h1 class="subPageTitle">Game Start</h1>
<div id="error-box"></div>
<div id="game-start" class="form-container">
<h2>Game Info</h2>
<form id="gameStartForm" class="gameForm">
<form id="gameStartForm" class="gameForm" autocomplete="off">
<label for="playerOneName">Player 1 Name:</label>
<br>
<input type="text" name="playerOne" required>
Expand Down

0 comments on commit 38d9693

Please sign in to comment.