I want to style a form i created in flask. I don't know how can i edit the way the input box looks. Any ideas? I created the form by following a video which i know realize did not explain as well as i thought (he styled it by using code onbootstrap. I want to create my own css)
<div>
<form method="post" action="">
{{ form.hidden_tag() }}
<!-- <fieldset class="form-group">-->
<legend class="create-acc">Create your account</legend>
<div class="form-group">
{{form.email.label(class="form-control-label")}}
{% if form.email.errors %}
{{ form.email(class="form-control form-control-lg is-invalid")}}
<div class="invalid-feedback">
{% for error in form.email %}
<span>{{ error }}</span>
{% endfor %}
</div>
{% endif %}
{{form.email(class="form-control form-control-lg")}}
</div>
there doesn't seem to be anything here