2018-01-23 00:51:14 +00:00
|
|
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Westeroscraft Launcher</title>
|
|
|
|
<script src="./assets/js/uicore.js"></script>
|
|
|
|
<script src="./assets/js/actionbinder.js"></script>
|
|
|
|
<link type="text/css" rel="stylesheet" href="./assets/css/launcher.css">
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background: url('assets/images/backgrounds/<%=0%>.jpg') no-repeat center center fixed;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
#main {
|
2018-04-02 20:05:48 +00:00
|
|
|
height: calc(100% - 22px);
|
2018-01-28 03:29:15 +00:00
|
|
|
background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
|
2018-01-23 00:51:14 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<% include frame.ejs %>
|
|
|
|
<div id="main">
|
2018-04-02 20:05:48 +00:00
|
|
|
<% include welcome.ejs %>
|
2018-03-28 20:13:57 +00:00
|
|
|
<% include login.ejs %>
|
2018-04-02 20:05:48 +00:00
|
|
|
<% include landing.ejs %>
|
2018-01-23 00:51:14 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|