blob: e104a88b201a5c2862b9ce4298191461d884cefb (
plain)
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
33
34
35
36
37
|
<?php
include "../../../src/accounts.php";
authorize_user();
include "../../../src/partials.php";
?>
<html>
<head>
<title>Log in to alright.party</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<div class="wrapper">
<?php html_navigation_bar(); ?>
<section class="content">
<section class="box" style="width: 400px;">
<div class="box navtab">
<p>Log in to alright.party</p>
</div>
<div class="box content">
<form action="/account/login/twitch.php" method="GET">
<button type="submit" class="purple" style="padding:8px 24px; font-size: 18px;">Login with
Twitch</button>
</form>
</div>
</section>
</section>
</div>
</div>
</body>
</html>
|