2023-02-16 18:50:32 -05:00
|
|
|
<% var rootPath='../' ; %>
|
2023-02-17 06:47:28 -05:00
|
|
|
<%- include(rootPath + 'templates/header.ejs' ); %>
|
2023-07-16 22:54:56 -04:00
|
|
|
<% if (params.serverType===0) { %>
|
|
|
|
<script>
|
|
|
|
window.serverType = 0;
|
|
|
|
</script>
|
|
|
|
<% } else { %>
|
|
|
|
<script>
|
|
|
|
window.serverType = 1;
|
|
|
|
</script>
|
|
|
|
<% } %>
|
2023-02-17 06:47:28 -05:00
|
|
|
<div id="loginContent">
|
2023-07-14 23:41:31 -04:00
|
|
|
<h1>MaiDXNet</h1>
|
2023-07-16 22:54:56 -04:00
|
|
|
<h5>Total Users Registered: <%= params.totalUsers %>
|
|
|
|
</h5>
|
2023-02-17 06:47:28 -05:00
|
|
|
<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">
|
2023-07-25 00:50:15 -04:00
|
|
|
<details>
|
|
|
|
<summary>
|
|
|
|
<h4>Issue Log:</h4>
|
|
|
|
</summary>
|
|
|
|
<h5>
|
2023-02-25 08:30:21 -05:00
|
|
|
- Site Is Not Complete<br>
|
2023-07-25 00:50:15 -04:00
|
|
|
- Artemis does not Support Memorial Photos, though that is coming.<br>
|
|
|
|
UI Jackets Have Now been fixed, please redl segapaser and rerun music.js.</h5>
|
|
|
|
</details>
|
2023-02-25 08:30:21 -05:00
|
|
|
</div>
|
2023-02-17 06:47:28 -05:00
|
|
|
</body>
|
|
|
|
|
2023-07-16 22:54:56 -04:00
|
|
|
</html>
|