-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 804 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<title>Login to Discord</title>
<style>
.container {
display: flex;
width: 100%;
padding: 40px 0;
align-items: center;
justify-content: center;
}
.container a {
background: #7289DA;
padding: 0 20px;
line-height: 35px;
color: #fff;
font-family: 'Helvetica', 'Arial', sans-sefir;
font-size: 20px;
display: block;
text-decoration: none;
border-radius: 3px;
}
</style>
</head>
<body>
<div class="container">
<a href="/api/discord/login">Login with Discord</a>
</div>
</body>
</html>