Merge branch 'master' into try-add-apikey

This commit is contained in:
Roman 2023-03-18 20:32:55 +03:00 committed by GitHub
commit c7a50ff779
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 1220 additions and 220 deletions

View file

@ -101,7 +101,11 @@
$("#btn_login").click(function () {
const username = $("#username").val();
const password = $("#password").val();
const data = {"username": username, "password": password}
let rememberMe = false;
if ($("#remember").is(':checked')){
rememberMe = true;
}
const data = {"username": username, "password": password, "rememberMe": rememberMe}
$.ajax({
cache: false,