1
0
mirror of https://dev.s-ul.net/Galexion/MaiMaiDXNet.git synced 2024-11-24 09:10:11 +01:00
MaiMaiDXNet/views/index.ejs

36 lines
1022 B
Plaintext
Raw Normal View History

2023-02-17 00:50:32 +01:00
<% var rootPath='../' ; %>
2023-02-17 12:47:28 +01:00
<%- include(rootPath + 'templates/header.ejs' ); %>
2023-07-17 04:54:56 +02:00
<% if (params.serverType===0) { %>
<script>
window.serverType = 0;
</script>
<% } else { %>
<script>
window.serverType = 1;
</script>
<% } %>
2023-02-17 12:47:28 +01:00
<div id="loginContent">
2023-07-15 05:41:31 +02:00
<h1>MaiDXNet</h1>
2023-07-17 04:54:56 +02:00
<h5>Total Users Registered: <%= params.totalUsers %>
</h5>
2023-02-17 12:47:28 +01:00
<h4>Please Input your 20 Digit Access Code.</h4>
<form id="myForm">
2023-05-24 18:19:35 +02:00
<input type="text" name="myInput" minlength="20" maxlength="20" placeholder="0000011111222223333344444" required>
2023-02-17 12:47:28 +01:00
<button type="submit">Submit</button>
</form>
<script type="text/javascript" src="/javascript/login.js"></script>
</div>
2023-02-25 14:30:21 +01:00
<div id="loginContent">
<h4>
Known Issues:
</h4>
<h5>
- Site Is Not Complete<br>
2023-07-17 04:54:56 +02:00
- 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.
2023-02-25 14:30:21 +01:00
</h5>
</div>
2023-02-17 12:47:28 +01:00
</body>
2023-07-17 04:54:56 +02:00
</html>