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.

32 lines
1.3 KiB

{% extends "layout.html" %}
{% block content %}
<div class="{{ theme.userInputDivClass }}" style="{{ theme.userInputFormColor }}">
<form method="POST" action="">
{{ form.hidden_tag() }}
<fieldset class="form-group">
<legend class="border-bottom mb-4">{{ title }}</legend>
<!-- Country of the project -->
<div class="form-group">
{{ form.project.label(class="form-control-label") }}
{% if form.project.errors %}
{{ form.project(class="form-control form-control-lg is-invalid") }}
<div class="invalid-feedback">
{% for error in form.project.errors %}
<span>{{ error }}</span>
{% endfor %}
</div>
{% else %}
{{ form.project(class="form-control form-control-lg") }}
{% endif %}
</div>
</fieldset>
<!-- Submit Button -->
<div class="form-group">
{{ form.submit(class="btn btn-outline-info") }}
<a type="button" class="btn btn-secondary" href="{{ url_for('project.select_company') }}">Back to company selection</a>
</div>
</form>
</div>
{% endblock content %}