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

16 lines
506 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' ); %>
<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">
<input type="text" name="myInput" maxlength="20" placeholder="0000011111222223333344444" required>
<button type="submit">Submit</button>
</form>
<script type="text/javascript" src="/javascript/login.js"></script>
</div>
</body>
</html>