diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-20 10:46:32 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-20 10:46:32 +0500 |
| commit | 3b6c6e5774dec41a16da03d1bb8497b448cfa564 (patch) | |
| tree | 4e9c79624c43c92dbcc288a61f5b92b1772d3c5c /public/account/login/index.php | |
| parent | 43e46d21c263fe8a8672e8e4b3ce38803b9cd089 (diff) | |
feat: users, account management, authentication system
Diffstat (limited to 'public/account/login/index.php')
| -rw-r--r-- | public/account/login/index.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/public/account/login/index.php b/public/account/login/index.php new file mode 100644 index 0000000..146fde9 --- /dev/null +++ b/public/account/login/index.php @@ -0,0 +1,38 @@ +<?php +include "../../../src/accounts.php"; +// FIXME +//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>
\ No newline at end of file |
