mirror of
https://github.com/hyper-neptune/yuuki.git
synced 2024-11-16 19:34:42 +08:00
18 lines
524 B
JavaScript
18 lines
524 B
JavaScript
|
$(function () {
|
||
|
$('form.login-box').on('submit', function (e) {
|
||
|
$.ajax({
|
||
|
type: "POST",
|
||
|
url: "/verify",
|
||
|
data: $(this).serialize(),
|
||
|
success: function (data) {
|
||
|
if (data.status == 200) {
|
||
|
Cookies.set('yuuki_admin', data.session);
|
||
|
location.reload();
|
||
|
} else {
|
||
|
$(".status").text("Wrong password")
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
e.preventDefault();
|
||
|
});
|
||
|
});
|