diff --git a/PasswordGenerator/templates/home.html b/PasswordGenerator/templates/home.html deleted file mode 100644 index 3ddc09f..0000000 --- a/PasswordGenerator/templates/home.html +++ /dev/null @@ -1,51 +0,0 @@ -{% extends "layout.html" %} - -{% block layout %} -
-

Password generator

-
- {{ form.hidden_tag() }} - - -
- {{form.length.label(class="form-control-label")}}
- {{form.length(class="form-control-label")}}
- - {% if form.length.errors %} -

Invalid value

- {% endif %} - - {{form.how_many_passwords.label(class="form-control-label")}}
- {{form.how_many_passwords(class="form-control-label")}}
- - {% if form.how_many_passwords.errors %} -

Invalid value


- {% endif %} - - {{ form.Upper_register_field.label}} - {{ form.Upper_register_field(class="check")}}
- - {{ form.Digits_field.label }} - {{ form.Digits_field(class="check") }}
- - {{ form.Punctuation_field.label}} - {{ form.Punctuation_field(class="check") }}
- -
- -
- {{form.submit(class="btn btn-outline-info")}}
-
-
-
- - {% if form.valid == True %} -
-

Generated passwords:


- - {%for password in form.password%} -

{{password}}


- {% endfor %} -
- {% endif %} -{% endblock layout %}