mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-28 10:53:48 -06:00
commit
2ae80f9fc3
@ -41,11 +41,13 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer>Copyright (c) 2022, LibreQoE LLC</footer>
|
<footer>
|
||||||
|
<a href="https://libreqos.io/credits/">Copyright (c) 2022, LibreQoE LLC</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function start() {
|
|
||||||
$("#btnLogin").on('click', (data) => {
|
function try_login() {
|
||||||
let newUser = {
|
let newUser = {
|
||||||
username: $("#username").val(),
|
username: $("#username").val(),
|
||||||
password: $("#password").val(),
|
password: $("#password").val(),
|
||||||
@ -62,7 +64,16 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
});
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function start() {
|
||||||
|
$("#btnLogin").on('click', try_login)
|
||||||
|
$(document).on('keydown', (e) => {
|
||||||
|
if (e.keyCode === 13) {
|
||||||
|
try_login()
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(start);
|
$(document).ready(start);
|
||||||
|
@ -16,3 +16,4 @@
|
|||||||
.mbot8 { margin-bottom: 8px; }
|
.mbot8 { margin-bottom: 8px; }
|
||||||
.row220 { height: 220px; }
|
.row220 { height: 220px; }
|
||||||
.redact { font-display: unset; }
|
.redact { font-display: unset; }
|
||||||
|
footer > a { color: white; }
|
||||||
|
Loading…
Reference in New Issue
Block a user