Skip to content

Commit

Permalink
name property added again to pass data to form
Browse files Browse the repository at this point in the history
  • Loading branch information
nadeem-p committed Oct 3, 2020
1 parent aba982e commit 39776d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generator/templates/generator/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ <h1>Password Generator</h1>
<option value="12">12</option>
</select>Length
<br>
<input type="checkbox" id="uppercase"> <label for="uppercase">Uppercase</label>
<input type="checkbox" id="uppercase" name="uppercase"> <label for="uppercase">Uppercase</label>
<br>
<input type="checkbox" id="numbers"> <label for="numbers">Numbers</label>
<input type="checkbox" id="numbers" name="numbers"> <label for="numbers">Numbers</label>
<br>
<input type="checkbox" id="special"> <label for="special">Special Character</label>
<input type="checkbox" id="special" name="special"> <label for="special">Special Character</label>
<br>
<input type="submit" value="Generate Password" class="btn btn-primary">
</form>
Expand Down

0 comments on commit 39776d2

Please sign in to comment.