19 lines
603 B
HTML
19 lines
603 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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">
|
|
<script src="/static/js/wasm_exec.js"></script>
|
|
</head>
|
|
<body>
|
|
<text id="clientId" style="display: none">{{ .ClientId }}</text>
|
|
<h2>Logging in...</h2>
|
|
<p id="statusBox"></p>
|
|
<button id="tryAgain" style="display: none">Try again</button>
|
|
<script>
|
|
loadWasm("/static-eternity/wasm/oauth.wasm")
|
|
</script>
|
|
</body>
|
|
</html>
|