diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2016-04-18 22:11:39 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2016-04-18 22:11:39 +0100 |
commit | 884013090b1b56b207f644393865c6057c9999ca (patch) | |
tree | 92d94820d0e131bc8385a7ca6540a96336b4e963 /templates/token.html |
Initial commit
Diffstat (limited to 'templates/token.html')
-rw-r--r-- | templates/token.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/templates/token.html b/templates/token.html new file mode 100644 index 0000000..8553c84 --- /dev/null +++ b/templates/token.html @@ -0,0 +1,46 @@ +<html> + <head> + <title>YOUR TOKEN!</title> + <style> + <!-- + body { + text-align: center; + font-family: sans-serif; + background-color: #edece4; + margin-top: 120px; + } + .code { + background-color: #26292B; + border: none; + color: #fff; + font-family: monospace; + font-size: 13; + font-weight: bold; + height: auto; + margin: 12px 12px 12px 12px; + padding: 12px 12px 12px 12px; + resize: none; + text-align: center; + width: 960px; + } + ::selection { + background: #32d0ff; + color: #000; + } + ::-moz-selection { + background: #32d0ff; + color: #000; + } + --> + </style> + </head> + <body> + <h2> + This is your token. There are many like it but this one is yours. + </h2> + <textarea class="code" readonly spellcheck="false" onclick="this.focus();this.select();">{{.Token}}</textarea> + <h2> + The token will expire in < 1 hour. + </h2> + </body> +</html> |