forge/arma/ui/apps/main/components/loginForm.js
2026-03-07 13:20:43 -06:00

77 lines
2.4 KiB
JavaScript

(function () {
const RegistryApp = (window.RegistryApp = window.RegistryApp || {});
const { h } = RegistryApp.runtime;
const store = RegistryApp.store;
RegistryApp.componentFns = RegistryApp.componentFns || {};
RegistryApp.componentFns.LoginForm = function LoginForm() {
const handleLogin = () => {
const data = {
email: String(
document.getElementById("org-login-email")?.value || "",
),
password: String(
document.getElementById("org-login-password")?.value || "",
),
};
console.log("Login Attempt:", data);
store.setView("portal");
};
return h(
"div",
{
className: "card",
style: { maxWidth: "400px", margin: "0 auto" },
},
h("h2", null, "Organization Login"),
h(
"div",
{ className: "app-form" },
h(
"div",
null,
h("label", null, "Email"),
h("input", {
id: "org-login-email",
type: "text",
placeholder: "admin@spearnet.mil",
}),
),
h(
"div",
null,
h("label", null, "Password"),
h("input", {
id: "org-login-password",
type: "password",
placeholder: "********",
}),
),
h(
"div",
{ className: "form-actions" },
h(
"button",
{
type: "button",
style: { width: "100%" },
onClick: handleLogin,
},
"Access Authenticator",
),
h(
"span",
{
className: "cancel-link",
onClick: () => store.setView("home"),
},
"Cancel / Return to Main",
),
),
),
);
};
})();