mirror of
https://dev.s-ul.net/Galexion/MaiMaiDXNet.git
synced 2024-11-24 07:10:16 +01:00
36 lines
1022 B
Plaintext
36 lines
1022 B
Plaintext
<% var rootPath='../' ; %>
|
|
<%- include(rootPath + 'templates/header.ejs' ); %>
|
|
<% if (params.serverType===0) { %>
|
|
<script>
|
|
window.serverType = 0;
|
|
</script>
|
|
<% } else { %>
|
|
<script>
|
|
window.serverType = 1;
|
|
</script>
|
|
<% } %>
|
|
<div id="loginContent">
|
|
<h1>MaiDXNet</h1>
|
|
<h5>Total Users Registered: <%= params.totalUsers %>
|
|
</h5>
|
|
<h4>Please Input your 20 Digit Access Code.</h4>
|
|
<form id="myForm">
|
|
<input type="text" name="myInput" minlength="20" maxlength="20" placeholder="0000011111222223333344444" required>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
<script type="text/javascript" src="/javascript/login.js"></script>
|
|
</div>
|
|
<div id="loginContent">
|
|
<h4>
|
|
Known Issues:
|
|
</h4>
|
|
<h5>
|
|
- Site Is Not Complete<br>
|
|
- Unfortunatly Some Song Jackets Cannot be found, which will lead certain lisenced and original songs to
|
|
load without their jackets when checking your play log. <br>
|
|
- Artemis does not Support Memorial Photos, though that is coming.
|
|
</h5>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |