Initial work on login UI. Will continue to experiment with the layout and tweak colors and sizing.

This commit is contained in:
Daniel Scalzi
2018-01-22 19:51:14 -05:00
parent 965b56c6bd
commit e555dd747f
8 changed files with 341 additions and 2 deletions

24
app/app.ejs Normal file
View File

@@ -0,0 +1,24 @@
<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 {
background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 50%);
}
</style>
</head>
<body>
<% include frame.ejs %>
<div id="main">
<% include login.ejs %>
</div>
</body>
</html>