1
0
mirror of https://dev.s-ul.net/Galexion/MaiMaiDXNet.git synced 2025-02-17 18:49:19 +01:00
MaiMaiDXNet/views/index.ejs

25 lines
796 B
Plaintext
Raw Normal View History

2023-02-16 18:50:32 -05:00
<% var rootPath='../' ; %>
2023-02-17 06:47:28 -05:00
<%- include(rootPath + 'templates/header.ejs' ); %>
<div id="loginContent">
<h1>MaiGateDX</h1>
<h5>Total Users Registered: <%= params.totalUsers %></h5>
<h4>Please Input your 20 Digit Access Code.</h4>
<form id="myForm">
2023-05-24 12:19:35 -04:00
<input type="text" name="myInput" minlength="20" maxlength="20" placeholder="0000011111222223333344444" required>
2023-02-17 06:47:28 -05:00
<button type="submit">Submit</button>
</form>
<script type="text/javascript" src="/javascript/login.js"></script>
</div>
2023-02-25 08:30:21 -05:00
<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.
</h5>
</div>
2023-02-17 06:47:28 -05:00
</body>
</html>