diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2016-08-28 00:52:26 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2016-08-28 00:52:26 +0100 |
commit | 7dbcbcc73210d8efe15a72b51b3245860051a89a (patch) | |
tree | 091ade98621ca2965e4a62beaa4cc1ddab573d47 /server/templates | |
parent | 0424ea77d6c09624f35c291a68dde60ea9ca8453 (diff) |
Cosmetic changes
Diffstat (limited to 'server/templates')
-rw-r--r-- | server/templates/certs.go | 2 | ||||
-rw-r--r-- | server/templates/token.go | 11 |
2 files changed, 9 insertions, 4 deletions
diff --git a/server/templates/certs.go b/server/templates/certs.go index 8c7f7ef..cf4c7d1 100644 --- a/server/templates/certs.go +++ b/server/templates/certs.go @@ -16,7 +16,7 @@ const Certs = ` <body> <div class="container"> <div class="page-header"> - <h1>Issued SSH Certificates</h1> + <h2>Issued SSH Certificates</h2> </div> <form action="/admin/revoke" method="post" id="form_revoke"> diff --git a/server/templates/token.go b/server/templates/token.go index afed2a3..ffaba91 100644 --- a/server/templates/token.go +++ b/server/templates/token.go @@ -32,13 +32,18 @@ const Token = ` <body> <div class="container"> <div class="page-header"> - <h1>Access Token</h1> + <h2>Access Token</h2> </div> <div> <textarea style="font-size: 15pt" class="u-full-width code" readonly spellcheck="false" onclick="this.focus();this.select();">{{.Token}}</textarea> - <h2> + <h3> The token will expire in < 1 hour. - </h2> + </h3> + </div> + <div> + <h4> + <a href="/admin/certs">Previously Issued Certificates</a> + </h4> </div> </div> </body> |