26 lines
902 B
HTML
26 lines
902 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" style="display: none;">
|
||
|
<head>
|
||
|
<title>Logging in...</title>
|
||
|
<meta charset="UTF-8"/>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||
|
<link rel="stylesheet" href="/kt-static/css/styles.css"/>
|
||
|
<script src="/kt-static/js/wasm_exec.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="hover">
|
||
|
<span id="clientId" style="display: none">{{ .ClientId }}</span>
|
||
|
<span id="authorizationUri" style="display: none">{{ .AuthorizationUri }}</span>
|
||
|
<h2>Logging in...</h2>
|
||
|
<p id="statusBox"></p>
|
||
|
<button id="tryAgain" style="display: none" class="button">Try again</button>
|
||
|
<script>
|
||
|
loadWasm("/kt-static/wasm/oauth.wasm")
|
||
|
</script>
|
||
|
<div id="swipe" class="swipe"></div>
|
||
|
<div id="swipe-out" class="swipe-out"></div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|