-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36e8fc6
commit 065e9c5
Showing
1 changed file
with
52 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,56 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Turbo Hearts</title> | ||
</head> | ||
<body> | ||
<ul> | ||
<li><a href="/auth/fusion">Sign in with Fusion</a></li> | ||
<li><a href="/auth/github">Sign in with Github</a></li> | ||
<li><a href="/auth/google">Sign in with Google</a></li> | ||
</ul> | ||
</body> | ||
<style> | ||
body { | ||
background: #222831; | ||
color: #eee; | ||
font-family: Helvetica, sans-serif; | ||
} | ||
|
||
a { | ||
color: #bbf; | ||
} | ||
|
||
a:visited { | ||
color: #bbf; | ||
} | ||
|
||
.welcome { | ||
margin-bottom: 30px; | ||
} | ||
|
||
.auth-sources { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.auth-source { | ||
margin-bottom: 30px; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="welcome"> | ||
<code>❤️ play.anti.run</code> | ||
</div> | ||
<div class="auth-sources"> | ||
<div class="auth-source"> | ||
<a href="/auth/fusion">Sign in with Fusion</a> | ||
<div>Simple user name and password authentication.</div> | ||
</div> | ||
<div class="auth-source"> | ||
<a href="/auth/github">Sign in with Github</a> | ||
<div>Authenticate with GitHub. We don't collect any information.</div> | ||
</div> | ||
<div class="auth-source"> | ||
<a href="/auth/google">Sign in with Google</a> | ||
<div>Authenticate with Google. We don't collect any information.</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |