Subversion Repositories SmartDukaan

Rev

Rev 6336 | Rev 6433 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6336 Rev 6400
Line 123... Line 123...
123
                                    <p>
123
                                    <p>
124
                                        $action.getErrorMessage() <br/>
124
                                        $action.getErrorMessage() <br/>
125
                                    </p>
125
                                    </p>
126
                                </div>
126
                                </div>
127
							#end
127
							#end
128
							<div style="margin-left:217px; margin-top:10px ; margin-bottom:20px">
128
							<div id='captcha-div' style="margin-left:217px; margin-top:10px ; margin-bottom:20px">
129
								<img src="/captcha" id="captchaImage" /><br/><br/>
129
								<img src="/captcha" id="captchaImage" /><br/><br/>
130
								<input id="captcha_response_box" class='captcha_text_blur' type="text" name="captcha_response_field" autocomplete="off">
130
								<input id="captcha_response_box" class='captcha_text_blur' type="text" name="captcha_response_field" autocomplete="off">
131
								<br/>
131
								<br/>
132
								<span style='font-size:14px'>Cannot read the image? <a id="captchaanchor" style="cursor: pointer;" >Click here</a>.</span>
132
								<span style='font-size:14px'>Cannot read the image? <a id="captchaanchor" style="cursor: pointer;" >Click here</a>.</span>
133
								<br><br>
133
								<br><br>
134
								<input style='width:200px' type="submit" value="RECHARGE NOW" class="make-payment-button">
134
								<input id='recharge-now-button' style='width:200px' type="submit" value="RECHARGE NOW" class="make-payment-button">
135
							</div>
135
							</div>
136
						#else
136
						#else
137
							<div style="text-align:center;">
137
							<div style="text-align:center;">
138
								<input type="submit" value="PAY NOW" class="submit-button">
138
								<input type="submit" value="PAY NOW" class="submit-button">
139
							</div>
139
							</div>
Line 167... Line 167...
167
        	var captcha_response_input = jQuery("form[name='" + formName + "'] :input[name='captcha_response_field']");
167
        	var captcha_response_input = jQuery("form[name='" + formName + "'] :input[name='captcha_response_field']");
168
        	var entered_text =  jQuery.trim(captcha_response_input.val());
168
        	var entered_text =  jQuery.trim(captcha_response_input.val());
169
            	if(entered_text == '' || entered_text == 'Enter the characters shown'){
169
            	if(entered_text == '' || entered_text == 'Enter the characters shown'){
170
            		dispError("Please enter the characters shown.");
170
            		dispError("Please enter the characters shown.");
171
            		captcha_response_input.blur();
171
            		captcha_response_input.blur();
-
 
172
					jQuery('#recharge-loading').remove();
-
 
173
					jQuery('#recharge-now-button').show();
172
            		return false;
174
            		return false;
173
            	}
175
            	}
174
        	return true;
176
        	return true;
175
        }
177
        }
176
 
178