45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Auth Success</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
|
|
color: #6e7681;
|
|
background: #fff;
|
|
}
|
|
.wrap {
|
|
max-width: 520px;
|
|
margin: 72px auto 0;
|
|
text-align: center;
|
|
padding: 0 20px;
|
|
}
|
|
h3 { margin: 0 0 12px; font-size: 40px; font-weight: 500; color: #6e7681; }
|
|
p { margin: 0; font-size: 34px; line-height: 1.35; }
|
|
.btn {
|
|
display: inline-block;
|
|
margin-top: 18px;
|
|
background: #0f141b;
|
|
color: #fff;
|
|
border: 0;
|
|
border-radius: 4px;
|
|
padding: 10px 18px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<h3>Auth completed.</h3>
|
|
<p>You can close this window and go back to the app.</p>
|
|
<a class="btn" href="https://fcscstats.onelink.me/V6mR/t40b32al/">Proceed</a>
|
|
</div>
|
|
</body>
|
|
</html>
|