costapy/pages/public/users.html

27 lines
785 B
HTML
Raw Normal View History

2025-08-11 09:01:33 +07:00
<input type="hidden" id="form-token" value="${token}">
2025-08-13 06:44:26 +07:00
<h2>Invitation</h2>
<input type="email" id="form-email" placeholder="Email" required > <br>
<input type="text" id="form-username" placeholder="Username (Optional)" > <br>
2025-08-13 07:25:49 +07:00
<div id="lister-roles"></div>
2025-08-13 06:44:26 +07:00
<hr>
<p>You need to insert your password for confirm the invitation</p>
<input type="password" id="form-password" placeholder="Password" > <br>
<hr>
<button type="button" onclick="invite()">Invite</button> <br>
<div id="alert-response" role="alert">
<b id="alert-status">Loading...</b> <span id="alert-desc">Please wait...</span>
</div>
<h2>User List</h2>
<ul id="lister-user"></ul>
<br><br>
2025-08-11 09:01:33 +07:00
<script type="text/javascript" src="/js/carrack.js"></script>
<script type="text/javascript" src="/js/users.js"></script>