{% include 'partial_header.html' %}

Employee Info Sheet

{% if new_user_redirected %}

Hello new employee! Please complete this form to add yourself to the database.

{% endif %}
{{form.hidden_tag()}} {# Allows form.validate() to work #}
{{ form.netid(type="text", placeholder=current_user.netid) }}

{{ form.name(type="text", placeholder=current_user.full_name) }}

{{ form.email(type="text", placeholder=current_user.email) }}

{{ form.title(type="text", placeholder=current_user.desc_duty) }}

{{ form.employee_type(type="text", placeholder=current_user.type) }}

{{ form.hourly_wage(type="text", placeholder=current_user.pay_rate) }}

{{ form.account_num(type="text", placeholder=current_user.account_num) }}
{{form.submit_button}}

{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %} {{ message }}
{% endfor %}
{% endif %} {% endwith %}

{% include 'partial_footer.html' %}