Member Registration

Family Head Information

Introduction - Step 1 of 3

Basic Information

Let's get Register with RTI

Invalid Phone Number

Upload Profile Photo

Upload an Family Head Passport Size Photo.

Upload Image

Next Step
); //hide the current fieldset with style current_fs.animate({ opacity: 0 }, { step: function (now) { // for making fielset appear animation opacity = 1 - now; current_fs.css({ 'display': 'none', 'position': 'relative' }); next_fs.css({ 'opacity': opacity }); }, duration: 600 }); } else { //alert('No valid'); //return false; } }); $(".vnext").click(function () { Page_ClientValidate("famstoryValidationGroup"); if (Page_IsValid) { /*$(".cnext").click(function () {*/ //if (v.form()) { current_fs = $(this).parent(); next_fs = $(this).parent().next(); //Add Class Active $("#progressbar a").eq($("fieldset").index(next_fs)).addClass("active"); //show the next fieldset next_fs.show(); //hide the current fieldset with style current_fs.animate({ opacity: 0 }, { step: function (now) { // for making fielset appear animation opacity = 1 - now; current_fs.css({ 'display': 'none', 'position': 'relative' }); next_fs.css({ 'opacity': opacity }); }, duration: 600 }); } else { //alert('No valid'); //return false; } }); //$(".previous").click(function () { // current_fs = $(this).parent(); // previous_fs = $(this).parent().prev(); // //Remove class active // $(".progressbar").eq($("div").index(current_fs)).removeClass("menu-active"); // //show the previous fieldset // previous_fs.show(); // //hide the current fieldset with style // current_fs.animate({ opacity: 0 }, { // step: function (now) { // // for making fielset appear animation // opacity = 1 - now; // current_fs.css({ // 'display': 'none', // 'position': 'relative' // }); // previous_fs.css({ 'opacity': opacity }); // }, // duration: 600 // }); //}); $(function () { $("#txtpassword").bind("keyup", function () { //TextBox left blank. if ($(this).val().length == 0) { $("#passwordstrength").html(""); return; } //Regular Expressions. var regex = new Array(); regex.push("[A-Z]"); //Uppercase Alphabet. regex.push("[a-z]"); //Lowercase Alphabet. regex.push("[0-9]"); //Digit. regex.push("[$@$!%*#?&]"); //Special Character. var passed = 0; //Validate for each Regular Expression. for (var i = 0; i < regex.length; i++) { if (new RegExp(regex[i]).test($(this).val())) { passed++; } } //Validate for length of Password. if (passed > 2 && $(this).val().length > 9) { passed++; } //Display status. var color = ""; var strength = ""; switch (passed) { case 0: case 1: strength = "Weak"; color = "red"; break; case 2: strength = "Good"; color = "darkorange"; break; case 3: case 4: strength = "Strong"; color = "green"; break; case 5: strength = "Very Strong"; color = "darkgreen"; break; } $("#passwordstrength").html(strength); $("#passwordstrength").css("color", color); $("#lblvery").html(strength); $("#lblvery").css("color", color); }); }); maxDate: 0 }).on('changeDate', function (ev) { $(this).datepicker('hide'); }); }