app.ejs 850 B

123456789101112131415161718192021222324252627
  1. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <meta charset="utf-8" />
  4. <title>Westeroscraft Launcher</title>
  5. <script src="./assets/js/uicore.js"></script>
  6. <script src="./assets/js/actionbinder.js"></script>
  7. <link type="text/css" rel="stylesheet" href="./assets/css/launcher.css">
  8. <style>
  9. body {
  10. background: url('assets/images/backgrounds/<%=0%>.jpg') no-repeat center center fixed;
  11. background-size: cover;
  12. }
  13. #main {
  14. height: calc(100% - 22px);
  15. background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <% include frame.ejs %>
  21. <div id="main">
  22. <% include welcome.ejs %>
  23. <% include login.ejs %>
  24. <% include landing.ejs %>
  25. </div>
  26. </body>
  27. </html>