DasUnternehmen/templates/dashboard.html

27 lines
915 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="content-card">
<h1>Self Assessment</h1>
<p>
Wir helfen Ihnen mit einer kurzen Selbsteinschätzung sich einen Überblick über ihre Unternehmenssituation zu verschaffen.
</p>
<form method="post" class="admin-form" style="max-width: 520px; margin-top: 24px;">
<div class="form-group">
<label for="branche_id">Branche</label>
<select id="branche_id" name="branche_id" required>
<option value="">Bitte auswählen</option>
{% for branche in branchen %}
<option value="{{ branche.id }}">{{ branche.branchenname }}</option>
{% endfor %}
</select>
</div>
<div class="form-actions">
<button type="submit" class="btn">Self Assessment starten</button>
</div>
</form>
</div>
{% endblock %}