summaryrefslogtreecommitdiffstats
path: root/application/views/user/apikeys.php
blob: 872eb9ef0c1e35b234abd19325cef060b3363812 (plain)
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
<h2>API keys</h2>
<div class="table-responsive">
	<table class="table table-striped">
		<thead>
			<tr>
				<th>#</th>
				<th>Key</th>
				<th style="width: 30%;">Comment</th>
				<th>Created on</th>
				<th></th>
			</tr>
		</thead>
		<tbody>
			<?php $i = 1; ?>
			<?php foreach($query as $key => $item): ?>
				<tr>
					<td><?php echo $i++; ?></td>
					<td><?php echo $item["key"]; ?></td>
					<td><?php echo htmlentities($item["comment"]); ?></td>
					<td><?php echo date("Y/m/d H:i", $item["created"]); ?></td>
					<td>
						<?php echo form_open("user/delete_apikey", array("style" => "margin-bottom: 0")); ?>
						<?php echo form_hidden("key", $item["key"]); ?>
						<button class="btn btn-danger btn-xs" type="submit">Delete</input>
						</form>
					</td>
				</tr>
			<?php endforeach; ?>
		</tbody>
	</table>
</div>

<p>
	<?php echo form_open('user/create_apikey', array("class" => "form-inline")); ?>
	<input type="text" name="comment" placeholder="Comment" class="form-control" style="width: 200px;"/>
	<input class="btn btn-primary" type="submit" value="Create a new key" name="process" />
</form>
</p>