{% extends "base.html" %} {% from "components/icon.html" import Icon %} {% from "components/text_input.html" import TextInput %} {% from "components/options_input.html" import OptionsInput %} {% block content %}

New Member

Account Details

{{ TextInput(form.first_name) }} {{ TextInput(form.last_name) }} {{ TextInput(form.email,placeholder='jane@mail.mil', validation='email') }} {{ TextInput(form.dod_id,placeholder='10-digit number on the back of the CAC', validation='dodId') }} {{ OptionsInput(form.workspace_role) }}
Add User {{ Icon('x') }} Cancel
{% endblock %}