/* Login rules */ input#login-form-submit:click { evt-click-preventdefault: True; action-server: kss_login_form; kss_login_form-kssSubmitForm: currentForm(); } form#login_form input:keydown { evt-keydown-preventdefault: true; evt-keydown-keycodes: 1; action-server: kss_login_form; kss_login_form-kssSubmitForm: currentForm(); } input#login-password-submit:click { evt-click-preventdefault: True; action-server: kss_login_password; kss_login_password-kssSubmitForm: currentForm(); } form#login_password input:keydown { evt-keydown-preventdefault: true; evt-keydown-keycodes: 1; action-server: kss_login_password; kss_login_password-kssSubmitForm: currentForm(); } /* PasswordResetTool rules */ input#pwreset-form-submit:click { evt-click-preventdefault: True; action-server: kss_pwreset_form; kss_pwreset_form-kssSubmitForm: currentForm(); } form#pwreset_form input:keydown { evt-keydown-preventdefault: true; evt-keydown-keycodes: 1; action-server: kss_pwreset_form; kss_pwreset_form-kssSubmitForm: currentForm(); } input#mail-password-form-submit:click { evt-click-preventdefault: True; action-server: kss_mail_password_form; kss_mail_password_form-kssSubmitForm: currentForm(); } form#mail_password input:keydown { evt-keydown-preventdefault: true; evt-keydown-keycodes: 1; action-server: kss_mail_password_form; kss_mail_password_form-kssSubmitForm: currentForm(); } /* New member registration rules */ input#join-form-submit:click { evt-click-preventdefault: True; action-server: kss_join_form; kss_join_form-kssSubmitForm: currentForm(); } form#join_form input:keydown { evt-keydown-preventdefault: true; evt-keydown-keycodes: 1; action-server: kss_join_form; kss_join_form-kssSubmitForm: currentForm(); } form#join_form input:blur { action-server: kss_join_form_validate_all; kss_join_form_validate_all-kssSubmitForm: currentForm(); kss_join_form_validate_all-input_id: nodeAttr('id'); }