mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-25 08:27:44 +00:00
This also moves the login pages to the login server, which makes the code slightly a bit more contained. The account management page doesn't allow you to do anything yet, but for future usage.
16 lines
326 B
HTML
16 lines
326 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Kawari</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>Welcome to Kawari!</p>
|
|
|
|
<a href="http://{{ login_server }}/oauth/oa/oauthlogin">Login</a>
|
|
<a href="http://{{ login_server }}/oauth/oa/registligt">Signup</a>
|
|
<a href="/worldstatus">World Status</a>
|
|
|
|
</body>
|
|
</html>
|