| Line 410... |
Line 410... |
| 410 |
<div class="center-text-bold12">Please enter the words shown below:</div><br/>
|
410 |
<div class="center-text-bold12">Please enter the words shown below:</div><br/>
|
| 411 |
<form id="codSelection" name="codSelection" action="/order" method="post" onsubmit="return verifyCodSelectionForm('codSelection')">
|
411 |
<form id="codSelection" name="codSelection" action="/order" method="post" onsubmit="return verifyCodSelectionForm('codSelection')">
|
| 412 |
<input type="hidden" name="addressid" id="addressid" value="$adrressId"/>
|
412 |
<input type="hidden" name="addressid" id="addressid" value="$adrressId"/>
|
| 413 |
<input type="hidden" name="payment_option" id='payment_option' value="3000"/>
|
413 |
<input type="hidden" name="payment_option" id='payment_option' value="3000"/>
|
| 414 |
<div style="margin-left:250px; margin-top:10px ; margin-bottom:20px">
|
414 |
<div style="margin-left:250px; margin-top:10px ; margin-bottom:20px">
|
| 415 |
<img src="/captcha" id="captchaImage" style="cursor: pointer;" /><br/><br/>
|
415 |
<img src="/captcha" id="captchaImage" /><br/><br/>
|
| 416 |
<input type="text" name="captcha_response_field" autocomplete="off">
|
416 |
<input type="text" name="captcha_response_field" autocomplete="off">
|
| 417 |
<br/><small>Can't read the image? Click it to get a new one.</small>
|
417 |
<br/>Can't read the image? <a id="captchaanchor" style="cursor: pointer;" >Click here</a>.
|
| 418 |
</div>
|
418 |
</div>
|
| 419 |
<div class="text-center">
|
419 |
<div class="text-center">
|
| 420 |
<input type="submit" value="CONFIRM ORDER" class="make-payment-button"/>
|
420 |
<input type="submit" value="CONFIRM ORDER" class="make-payment-button"/>
|
| 421 |
<br/><br/>
|
421 |
<br/><br/>
|
| 422 |
<ul class="bold text-left" style="padding-left: 150px;">
|
422 |
<ul class="bold text-left" style="padding-left: 150px;">
|
| Line 454... |
Line 454... |
| 454 |
|
454 |
|
| 455 |
#include ( "templates/commonjsfiles.vm" )
|
455 |
#include ( "templates/commonjsfiles.vm" )
|
| 456 |
<script language="javascript" type="text/javascript" src="/js/proceed-to-pay.js"></script>
|
456 |
<script language="javascript" type="text/javascript" src="/js/proceed-to-pay.js"></script>
|
| 457 |
<script type="text/javascript">
|
457 |
<script type="text/javascript">
|
| 458 |
$(function(){
|
458 |
$(function(){
|
| 459 |
$('#captchaImage').click(function () { $(this).attr('src', '/captcha?rand=' + Math.floor(Math.random()*100) ); })
|
459 |
$('#captchaanchor').click(function () { $('#captchaImage').attr('src', '/captcha?rand=' + Math.floor(Math.random()*100) ); })
|
| 460 |
});
|
460 |
});
|
| 461 |
</script>
|
461 |
</script>
|
| 462 |
</body>
|
462 |
</body>
|
| 463 |
</html>
|
463 |
</html>
|
| 464 |
|
464 |
|