mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
34 lines
No EOL
1.4 KiB
JavaScript
34 lines
No EOL
1.4 KiB
JavaScript
define([], function() {
|
|
"use strict";
|
|
|
|
function processForgotPasswordResult(result) {
|
|
if ("ContactAdmin" == result.Action) return void Dashboard.alert({
|
|
message: Globalize.translate("MessageContactAdminToResetPassword"),
|
|
title: Globalize.translate("HeaderForgotPassword")
|
|
});
|
|
if ("InNetworkRequired" == result.Action) return void Dashboard.alert({
|
|
message: Globalize.translate("MessageForgotPasswordInNetworkRequired"),
|
|
title: Globalize.translate("HeaderForgotPassword")
|
|
});
|
|
if ("PinCode" == result.Action) {
|
|
var msg = Globalize.translate("MessageForgotPasswordFileCreated");
|
|
return msg += "<br/>", msg += "<br/>", msg += result.PinFile, msg += "<br/>", void Dashboard.alert({
|
|
message: msg,
|
|
title: Globalize.translate("HeaderForgotPassword")
|
|
})
|
|
}
|
|
}
|
|
return function(view, params) {
|
|
function onSubmit(e) {
|
|
return ApiClient.ajax({
|
|
type: "POST",
|
|
url: ApiClient.getUrl("Users/ForgotPassword"),
|
|
dataType: "json",
|
|
data: {
|
|
EnteredUsername: view.querySelector("#txtName").value
|
|
}
|
|
}).then(processForgotPasswordResult), e.preventDefault(), !1
|
|
}
|
|
view.querySelector("form").addEventListener("submit", onSubmit)
|
|
}
|
|
}); |