19 lines
543 B
HTML
19 lines
543 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Screen Tokens</title>
|
|
<link rel="shortcut icon" href="static/favicon.ico">
|
|
</head>
|
|
<body>
|
|
<h1>Screen Tokens</h1>
|
|
{% if new_token: %}
|
|
<p>The new token is: <code>{{ new_token }}</code></p>
|
|
{% endif %}
|
|
<form action="" method="post">
|
|
<button type="submit">Create new token</button>
|
|
</form>
|
|
</body>
|
|
</html>
|