hatecomputers.club/templates/api_keys.html

33 lines
751 B
HTML
Raw Normal View History

{{ define "content" }}
<table>
<tr>
2024-03-29 18:35:04 -04:00
<th>key.</th>
<th>created at.</th>
<th>revoke.</th>
</tr>
{{ if (eq (len .APIKeys) 0) }}
<tr>
2024-03-29 18:35:04 -04:00
<td colspan="5"><span class="blinky">no api keys found</span></td>
</tr>
{{ end }}
{{ range $key := .APIKeys }}
<tr>
<td>{{ $key.Key }}</td>
2024-03-29 18:35:04 -04:00
<td class="time">{{ $key.CreatedAt }}</td>
<td>
<form method="POST" action="/keys/delete">
<input type="hidden" name="key" value="{{ $key.Key }}" />
2024-03-29 18:35:04 -04:00
<input type="submit" value="revoke." />
</form>
</td>
</tr>
{{ end }}
</table>
<br>
<form method="POST" action="/keys" class="form">
2024-03-29 18:35:04 -04:00
<h2>generate key.</h2>
<hr>
2024-03-29 18:35:04 -04:00
<input type="submit" value="generate." />
</form>
{{ end }}