remove old readme
[atutor.git] / themes / default / instructor / enrolment / create_course_list.tmpl.php
1 <div class="input-form">
2                 <fieldset class="group_form"><legend class="group_form"><?php echo _AT('list_create_course_list'); ?></legend>
3 <form action="mods/_core/enrolment/verify_list.php" method="post">
4 <input type="hidden" name="from" value="create" />
5 <div>
6
7         <div class="row">
8                 <?php echo _AT('import_sep_txt'); ?><br />
9                 <input type="radio" name="sep_choice" id="und" value="_" checked="checked" />
10                 <label for="und"><?php echo _AT('underscore'); ?></label>
11                 <input type="radio" name="sep_choice" id="per" value="." />
12                 <label for="per"><?php echo _AT('period'); ?></label>
13         </div>
14
15                 
16 <table class="data static" summary="Create a course list by first name, last name, and email." rules="cols">
17 <thead>
18 <tr>
19         <th>&nbsp;</th>
20         <th><?php echo _AT('first_name'); ?></th>
21         <th><?php echo _AT('last_name'); ?></th>
22         <th><?php echo _AT('email'); ?></th>
23 </tr>
24 </thead>
25
26 <tfoot>
27 <tr>
28         <td colspan="4">
29                 <input type="submit" name="submit" value="<?php echo _AT('list_add_course_list');  ?>" />
30                 <input type="submit" name="cancel" value="<?php echo _AT('cancel'); ?>" />
31         </td>
32 </tr>
33 </tfoot>
34
35 <tbody>
36 <?php for ($i=1; $i <= 5; $i++): ?>
37         <tr>
38                 <td><?php echo $i; ?></td>
39                 <td><input type="text" name="first_name<?php echo $i; ?>" /></td>
40                 <td><input type="text" name="last_name<?php echo $i; ?>" /></td>
41                 <td><input type="text" name="email<?php echo $i; ?>" /></td>
42         </tr>
43 <?php endfor; ?>
44 </tbody>
45
46 </table>
47 </form>
48 </fieldset>
49 </div>