mirror of
https://github.com/jesperh1/csgo-hub-backend.git
synced 2025-05-16 09:18:11 +01:00
20 lines
1.1 KiB
HTML
20 lines
1.1 KiB
HTML
<html>
|
|
<head><title>Steam OpenID</title></head>
|
|
<style>body{font-family: Inter, Avenir, Helvetica, Arial, sans-serif;font-size: 16px;line-height: 24px;font-weight: 400;color-scheme: light dark;color: rgba(255, 255, 255, 0.87);background-color: #242424;font-synthesis: none;text-rendering: optimizeLegibility;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-webkit-text-size-adjust: 100%;}a {font-weight: 500;color: #646cff;text-decoration: inherit;}a:hover {color: #535bf2;}.login {margin-top: 5%;margin: 0;text-align: center;min-width: 320px;min-height: 100vh;}h1 {font-size: 3.2em;line-height: 1.1;}img {scale: 1.2;}</style>
|
|
<body>
|
|
<div class="login">
|
|
{{if .user}}
|
|
<p>{{.user}} Linked to your Discord account</p>
|
|
{{else}}
|
|
<h1>Authenticate Steam</h1>
|
|
<a href="/discover">
|
|
<img alt="Sign in through Steam" src="http://steamcommunity-a.akamaihd.net/public/images/signinthroughsteam/sits_large_noborder.png" />
|
|
</a>
|
|
{{end}}
|
|
{{if .error}}
|
|
<p>An error occured</p>
|
|
{{end}}
|
|
</div>
|
|
</body>
|
|
</html>
|