blob: 05f5a829c006c2344f991e12e092a6ae3a6454ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package templates
// Token is the page users see when authenticated.
const Token = `
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Token</title>
<style>
</style>
</head>
<body>
<h1>Access Token</h1>
<p>Paste the following token at your <code>cashier</code> prompt:</p>
<pre><code>{{.Token}}</code></pre>
</body>
</html>
`
|