2023-02-22 17:11:14 -05:00
|
|
|
<!DOCTYPE html>
|
2023-03-01 17:05:16 -05:00
|
|
|
{% include 'head.html' %}
|
|
|
|
|
{% include 'header.html' %}
|
|
|
|
|
{% include 'logo.html' %}
|
2023-02-22 17:11:14 -05:00
|
|
|
{% block content %}
|
2023-02-22 20:18:34 -05:00
|
|
|
<h2>Hello! Please enter Group Names below.</h2>
|
|
|
|
|
<p></p>
|
2023-02-22 17:11:14 -05:00
|
|
|
{% if error %}
|
2023-02-22 20:18:34 -05:00
|
|
|
<h4 class=error><strong> </strong>{{ error }}</h4>
|
2023-02-22 17:11:14 -05:00
|
|
|
{% endif %}
|
2023-02-22 20:18:34 -05:00
|
|
|
<p></p>
|
|
|
|
|
<p><label for="Bulk Add Groups"> </label></p>
|
2023-02-22 17:11:14 -05:00
|
|
|
<form action="{{ url_for("bulk_add_groups")}}" method="post">
|
|
|
|
|
<p>Please enter a comma separated list of Groups you'd like to add</p>
|
|
|
|
|
<textarea id="groups" name="groups" rows="4" cols="50"></textarea>
|
|
|
|
|
<p></p>
|
|
|
|
|
<input type="submit" value="Submit"></input>
|
|
|
|
|
</form>
|
2023-02-26 22:08:24 -08:00
|
|
|
{% include 'table.html' %}
|
|
|
|
|
{% endblock %}
|