Employee Info Sheet
{% if new_user_redirected %}
Hello new employee! Please complete this form to add yourself to
the database.
{% endif %}
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% include 'partial_footer.html' %}