token support, api fixes and security, dark mode

This commit is contained in:
Joey Kimsey
2024-12-07 01:58:27 -05:00
parent b93d0259e4
commit 485d85cb0a
26 changed files with 934 additions and 85 deletions

View File

@ -0,0 +1,48 @@
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xs-offset-0 col-sm-offset-0 col-md-offset-3 col-lg-offset-3 top-pad" >
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">{name}</h3>
</div>
<div class="panel-body">
<div class="row">
<div class=" col-md-9 col-lg-9 ">
<table class="table table-user-primary">
<tbody>
<tr>
<td>Type</td>
<td>{token_type}</td>
</tr>
<tr>
<td>Created At</td>
<td>{DTC}{createdAt}{/DTC}</td>
</tr>
<tr>
<td>Expires At</td>
<td>{DTC}{expiresAt}{/DTC}</td>
</tr>
<tr>
<td>Token</td>
<td>{token}</td>
</tr>
<tr>
<td>Secret</td>
<td>{secret}</td>
</tr>
<tr>
<td>Notes</td>
<td>{notes}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="panel-footer">
<a href="{ROOT_URL}admin/tokens/delete/{ID}" class="btn btn-sm btn-danger" role="button">Delete</a>
</div>
</div>
</div>
</div>
</div>