2023-02-21 16:59:41 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
{% extends 'head.html' %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
<h4>Hello! Please enter the emails below.</h4>
|
|
|
|
|
{% if error %}
|
2023-02-22 06:42:26 -05:00
|
|
|
<p class=error><strong> </strong>{{ error }}</p>
|
2023-02-21 16:59:41 -05:00
|
|
|
{% endif %}
|
|
|
|
|
|
2023-02-22 17:11:14 -05:00
|
|
|
<p><label for="Bulk Add People"> Please select the appropriate options below.</label></p>
|
|
|
|
|
<form action="{{ url_for("bulk_add_ppl")}}" method="post">
|
2023-02-21 16:59:41 -05:00
|
|
|
<p>Please Copy and Paste Emails of learners you'd like to add</p>
|
|
|
|
|
<textarea id="emails" name="emails" rows="4" cols="50"></textarea>
|
2023-02-22 06:42:26 -05:00
|
|
|
<p>Please paste in the Group UUIDs which these learners should be added to.</p>
|
|
|
|
|
<textarea id="groups" name="groups" rows="4" cols="50"></textarea>
|
2023-02-22 17:11:14 -05:00
|
|
|
<p></p>
|
|
|
|
|
<input type="submit" value="Submit"></input>
|
2023-02-22 06:42:26 -05:00
|
|
|
</form>
|
2023-02-26 22:08:24 -08:00
|
|
|
{% include 'table.html' %}
|
|
|
|
|
{% endblock %}
|