-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbulk-edit.php
More file actions
70 lines (62 loc) · 2.19 KB
/
Copy pathbulk-edit.php
File metadata and controls
70 lines (62 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
include_once("functions.php");
require_login();
$activeSection = 'scripts';
$pageTitle = "Create Collection";
require("header.php");
?>
<ul class="breadcrumb">
<li>
<a href="index.php">
<i class="fa fa-home"></i> Home
</a>
</li>
<li class="last">
<a href="bulk-edit.php">
<i class="fa fa-pencil"></i> Manage Users
</a>
</li>
<li class="help">
<a href="help.php">
<i class="fa fa-question-circle"></i> Help
</a>
</li>
</ul>
<div class="island">
<div class="island-header">
<h3>Manage Users</h3>
</div>
<form class="form-horizontal" method="post" action="bulk-edit-action.php" enctype="multipart/form-data">
<div class="island-body">
<div class="form-group">
<label for="file" class="control-label col-sm-3">Upload a CSV File</label>
<div class="col-sm-9">
<input type="file" id="file" name="file" class="form-control" />
</div>
</div>
<div class="form-group">
<label for="action" class="control-label col-sm-3">Action</label>
<div class="col-sm-9">
<select id="action" name="action" class="form-control">
<option value="extend">Extend Expiry Date</option>
<option value="reset">Reset passwords and email users</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-9 col-sm-push-3">
<button type="submit" class="btn btn-block btn-success"><i class="fa fa-plus-circle"></i> Create Accounts</button>
</div>
</div>
</div>
</form>
</div>
<div class="island">
<div class="island-header">
<h3>Instructions for Use</h3>
</div>
<div class="island-body">
<p>Create a spreadsheet with only one column. This column can either be the username or email address of the user. Once you're done, export this spreadsheet as a CSV and upload it here.</p>
</div>
</div>
<?php include("footer.php"); ?>