{% 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) }} {{ TextInput(form.dod_id) }} {{ OptionsInput(form.workspace_role) }}
Add User {{ Icon('x') }} Cancel
{% endblock %}