45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>subscribe-bot</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="/static/main.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1 class="title">
|
|
<a href="/">subscribe-bot</a>
|
|
</h1>
|
|
|
|
<small>logging in with your osu account does nothing</small>
|
|
|
|
<div class="nav-bar">
|
|
<a href="/">home</a>
|
|
|
|
{{ if .LoggedIn }}
|
|
<a href="/logout">logout</a>
|
|
{{ else }}
|
|
<a href="/login">login</a>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ template "content" . }}
|
|
|
|
<footer>
|
|
<hr />
|
|
<small>
|
|
Maintained by <a href="https://osu.ppy.sh/u/2688103" target="_blank">IOException</a>
|
|
·
|
|
<a href="https://git.mzhang.io/osu/subscribe-bot" target="_blank">Source code</a>
|
|
·
|
|
<a href="https://discord.gg/eqjVG2H" target="_blank">Discord</a>
|
|
·
|
|
subscribe-bot v{{ GitCommit }}
|
|
</small>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|