Step 1 von 3 Regeln
Step 2 von 3 Registrieren
Step 3 von 3 Bestädigung/Anmeldung
Jetzt ist die sache das ich zb. bei Step 1 von 3 class oder id hinzufügen kann oder ein javascript.
Aber irgendwie wird ab Step 2 von 3 class und id nicht angenommen irgendwie so ob {EXPLODE} es verschlucken tut.
Hätte da jemand ein Rat wie ich da auch class und id einfügen kann so das es angenommen wird?
so zb. funktioniert es wenn man fast alles raus nimmt, aber so sind ja jetzt die Regeln weg und er nimmt die abfragen nicht mehr an.
<!-- include the Tools --> <script src="http://localhost/newmintest/include/templates/user/jquery.tools.min.js"></script> <!-- standalone page styling (can be removed) --> <link rel="shortcut icon" href="/media/img/favicon.ico"> <link rel="stylesheet" type="text/css" href="http://localhost/newmintest/include/templates/user/css/standalone.css"/> <!-- same styling as in minimal setup --> <link rel="stylesheet" type="text/css" href="http://localhost/newmintest/include/templates/user/css/form.css"/> <!-- override it to have a columned layout --> <link rel="stylesheet" type="text/css" href="http://localhost/newmintest/include/templates/user/css/columns.css"/> <form id="myform" class="cols"> <h3>{_lang_REGISTER}</h3> <fieldset> <label> email * <input type="text" value="{email}" name="email" required minlength="9" /> </label> <label> username * <input type="text" name="nutz" value="{name}" minlength="5" /> </label> <label> Password <input type="password" name="pass" minlength="4" /> </label> </fieldset> <div class="clear"></div> <input type="submit" value="{_lang_register}"> </form> <script> // Regular Expression to test whether the value is valid $.tools.validator.fn("[type=time]", "Please supply a valid time", function(input, value) { return /^\d\d:\d\d$/.test(value); }); $.tools.validator.fn("[data-equals]", "Value not equal with the $1 field", function(input) { var name = input.attr("data-equals"), field = this.getInputs().filter("[name=" + name + "]"); return input.val() == field.val() ? true : [name]; }); $.tools.validator.fn("[minlength]", function(input, value) { var min = input.attr("minlength"); return value.length >= min ? true : { en: "Please provide at least " +min+ " character" + (min > 1 ? "s" : ""), fi: "Kentän minimipituus on " +min+ " merkkiä" }; }); $.tools.validator.localizeFn("[type=time]", { en: 'Please supply a valid time', fi: 'Virheellinen aika' }); $("#myform").validator({ position: 'top left', offset: [-12, 0], message: '<div><em/></div>' // em element is the arrow }); </script> {EXPLODE} {_lang_hello} {NAME}<br> {_lang_yourregistrationwassuccessful}!<br><br> {_lang_amailhasbeensenttoyouwithmailandpass}!<br><br> {_lang_afteryoureceivedthemail} <a href="index.php?user-2">{_lang_login2}</a>
Edit: Habe es hinbekommen!!!
Zuletzt modifiziert von whazza am 09.11.2012 - 18:51:55