21 lines
647 B
HTML
21 lines
647 B
HTML
<!DOCTYPE html>
|
|
{% include 'head.html' %}
|
|
{% include 'header.html' %}
|
|
{% include 'logo.html' %}
|
|
{% block content %}
|
|
<h2>Hello! Please enter Group Names below.</h2>
|
|
<p></p>
|
|
{% if error %}
|
|
<h4 class=error><strong> </strong>{{ error }}</h4>
|
|
{% endif %}
|
|
<p></p>
|
|
<p><label for="Bulk Add Groups"> </label></p>
|
|
<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>
|
|
{% include 'table.html' %}
|
|
{% endblock %}
|