You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.7 KiB
47 lines
1.7 KiB
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<div class="{{ theme.userInputDivClass }}" style="{{ theme.userInputFormColor }}">
|
|
<form method="POST" action="">
|
|
{{ form.hidden_tag() }}
|
|
<fieldset class="form-group"></fieldset>
|
|
<legend class="border-bottom mb-4">Register Company Endustry</legend>
|
|
|
|
<!-- name of the company-->
|
|
<div class="form-group">
|
|
{{ form.name.label(class="form-control-label") }}
|
|
{% if form.name.errors %}
|
|
{{ form.name(class="form-control form-control-lg is-invalid") }}
|
|
<div class="invalid-feedback">
|
|
{% for error in form.name.errors %}
|
|
<span>{{ error }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
{{ form.name(class="form-control form-control-lg") }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- description of the company-->
|
|
<div class="form-group">
|
|
{{ form.description.label(class="form-control-label") }}
|
|
{% if form.description.errors %}
|
|
{{ form.description(class="form-control form-control-lg is-invalid") }}
|
|
<div class="invalid-feedback">
|
|
{% for error in form.description.errors %}
|
|
<span>{{ error }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
{{ form.description(class="form-control form-control-lg") }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- Submit Button -->
|
|
<div class="form-group">
|
|
{{ form.submit(class="btn btn-outline-info") }}
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
{% endblock content %}
|