summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-08-08 11:54:16 +0200 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-08-08 11:54:16 +0200 |
commit | 0e15e48cf698c6d146ec3a93f844f03509111c6a (patch) | |
tree | 4c2abb69f01d876afc21663e3b6277c412dc9dcd /src/login/www | |
parent | 9d0475892354be33fa250b33ff0fc858aedb957a (diff) |
Starting to work on the sign-{in,out,up} page.
Diffstat (limited to 'src/login/www')
-rw-r--r-- | src/login/www/index.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/login/www/index.html b/src/login/www/index.html new file mode 100644 index 0000000..d2e13fd --- /dev/null +++ b/src/login/www/index.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html> + <head> + <link rel="stylesheet" type="text/css" href="/css/global.css"> + <link rel="stylesheet" type="text/css" href="/css/verbose.css"> + <link rel="stylesheet" type="text/css" href="/css/login.css"> + <link rel="icon" type="image/x-icon" href="/favicon.ico"> + </head> + <body> + <script src="script/main.js"></script> + <script src="../global/script/session.js"></script> + <script src="../global/script/urlparams.js"></script> + <script> + tacticians_online.session.load(); + + tacticians_online.app = + Elm.Main.fullscreen + ( + { + user_id: tacticians_online.session.get_user_id(), + token: tacticians_online.session.get_token(), + url_params: tacticians_online.urlparams.get_parameters() + } + ); + + tacticians_online.session.attach_to(tacticians_online.app); + </script> + </body> +</html> |