xv-webcomponents 0.1.64-qa.0 → 0.1.65-qa.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/xv-accordion-v2_40.cjs.entry.js +2 -2
- package/dist/cjs/xv-accordion-v2_40.cjs.entry.js.map +1 -1
- package/dist/collection/components/xv-login-modal/xv-login-modal.js +2 -2
- package/dist/collection/components/xv-login-modal/xv-login-modal.js.map +1 -1
- package/dist/esm/xv-accordion-v2_40.entry.js +2 -2
- package/dist/esm/xv-accordion-v2_40.entry.js.map +1 -1
- package/dist/xv-webcomponents/{p-d81234fe.entry.js → p-87177606.entry.js} +2 -2
- package/dist/xv-webcomponents/{p-d81234fe.entry.js.map → p-87177606.entry.js.map} +1 -1
- package/dist/xv-webcomponents/xv-webcomponents.esm.js +1 -1
- package/package.json +1 -1
|
@@ -78213,12 +78213,12 @@ const XvLoginModal = class {
|
|
|
78213
78213
|
renderFooter() {
|
|
78214
78214
|
if (!this.passwordRegistrationEnabled && this.configurationName !== this.xvMvcConfigName)
|
|
78215
78215
|
return null;
|
|
78216
|
-
return (index.h("div", { class: "modal-footer" }, index.h("div", { class: "col-sm-12 text-left" }, this.passwordRegistrationEnabled && (index.h("div", null, "
|
|
78216
|
+
return (index.h("div", { class: "modal-footer" }, index.h("div", { class: "col-sm-12 text-left" }, this.passwordRegistrationEnabled && (index.h("div", null, "Neuer Kunde?", index.h("a", { href: `/de-de/mycrossvertise/account/register?returnUrl=${encodeURIComponent(this.returnUrl)}` }, "Jetzt kostenlos registrieren!"))), this.configurationName === this.xvMvcConfigName && (index.h("div", null, index.h("div", { class: "spacer" }, "Sie sind bereits registriert, k\u00F6nnen sich aber nicht einloggen?"), index.h("div", null, index.h("a", { href: this.contactUrl }, "Kontaktieren Sie uns"), ", wir k\u00FCmmern uns darum."))))));
|
|
78217
78217
|
}
|
|
78218
78218
|
render() {
|
|
78219
78219
|
if (!this.visible)
|
|
78220
78220
|
return null;
|
|
78221
|
-
return (index.h("div", { class: "modal show", style: { display: 'block' }, id: "login-modal", tabIndex: -1, role: "dialog" }, index.h("div", { class: "modal-dialog", role: "document" }, index.h("div", { class: "modal-content" }, index.h("div", { class: "modal-header" }, index.h("div", { class: "row" }, index.h("div", { class: "col-sm-10" }, index.h("div", { class: "col-xs-12" }, index.h("h4", { class: "modal-title" }, "
|
|
78221
|
+
return (index.h("div", { class: "modal show", style: { display: 'block' }, id: "login-modal", tabIndex: -1, role: "dialog" }, index.h("div", { class: "modal-dialog", role: "document" }, index.h("div", { class: "modal-content" }, index.h("div", { class: "modal-header" }, index.h("div", { class: "row" }, index.h("div", { class: "col-sm-10" }, index.h("div", { class: "col-xs-12" }, index.h("h4", { class: "modal-title" }, "Logindaten"))), index.h("div", { class: "col-xs-1 pull-right" }, index.h("button", { onClick: this.handleClose, type: "button", class: "close" }, index.h("span", { "aria-hidden": "true" }, "\u00D7"))))), index.h("div", { class: "modal-body" }, index.h("div", { class: "row" }, index.h("div", { class: "col-sm-12" }, index.h("form", { autoComplete: "off", id: "logon-modal-form", action: `/de-de/mycrossvertise/account/logon?returnUrl=${encodeURIComponent(this.returnUrl)}`, method: "post", class: "spacer", onSubmit: this.handleSubmit }, index.h("input", { type: "hidden", name: "returnUrl", value: this.returnUrl }), index.h("div", { class: "form-group spacer-bottom" }, index.h("div", { class: "control-label col-xs-12" }, index.h("label", { htmlFor: "LoginPopup.UserName" }, "E-Mail"), index.h("strong", { class: "text-danger" }, "*")), index.h("div", { class: "col-xs-12" }, index.h("input", { class: "form-control", id: "userName", name: "UserName", type: "text", tabIndex: 1 }))), index.h("div", { class: "form-group spacer" }, index.h("div", { class: "control-label col-xs-6" }, index.h("label", { class: "spacer", htmlFor: "LoginPopup.Password" }, "Passwort"), index.h("strong", { class: "text-danger spacer" }, "*")), index.h("div", { class: "col-xs-6" }, this.renderPasswordLogin()), index.h("div", { class: "col-xs-12" }, index.h("input", { class: "form-control", id: "password", name: "Password", type: "password", tabIndex: 2 }))), index.h("div", { class: "form-group spacer" }, index.h("div", { class: "col-xs-12" }, index.h("button", { class: "btn btn-primary btn-lg btn-block spacer", type: "submit", tabIndex: 3 }, "Anmelden"))), index.h("div", { class: "form-group" }, index.h("div", { class: "checkbox col-xs-12" }, index.h("label", { htmlFor: "RememberMe" }, index.h("input", { id: "RememberMe", name: "RememberMe", type: "checkbox", value: "true" }), "Angemeldet bleiben?")))))), this.renderOAuthProviders()), this.renderFooter()))));
|
|
78222
78222
|
}
|
|
78223
78223
|
};
|
|
78224
78224
|
XvLoginModal.style = xvLoginModalCss;
|