Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2016
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title>JAVHD.com - {i}Join page{/i}</title>
  6. <link rel="shortcut icon" type="image/x-icon" href="http://javhd.com/images/favicon.ico">
  7. <link rel="canonical" href="http://{$smarty.server.HTTP_HOST}/signup/signup.php?_language={$user_lang}&tpl=join32" />
  8. <link rel="stylesheet" href="/sites/javhd.com/new/style/join67.css">
  9. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  10. <script type="text/javascript" src="/sites/javhd.com/js/cookies.js"></script>
  11. {literal}
  12. <script type='text/javascript'>
  13. function setCookie(cname, cvalue, exdays) {
  14. var d = new Date();
  15. d.setTime(d.getTime() + (exdays*24*60*60*1000));
  16. var expires = "expires="+d.toUTCString();
  17. document.cookie = cname + "=" + cvalue + "; " + expires;
  18. }
  19. var ref = document.referrer;
  20. if ( (ref.indexOf("google")!= -1) || (ref.indexOf("search.yahoo")!= -1) || (ref.indexOf("bing")!= -1) )
  21. {
  22. //add cookie
  23. setCookie('organic', 'yes', 100);
  24. }
  25. </script>
  26. <script type='text/javascript'>
  27. $.getJSON('http://javhd.com/netstat').done(function(data) {
  28. if (data) {
  29. $.each(data, function(key, value) {
  30. $('.js-netstat-' + key).html(value.toString().replace(/(\d)(?=(\d\d\d)+([^\d]|$))/g, '$1 '));
  31. });
  32. }
  33. });
  34. </script>
  35. {/literal}
  36. {literal}
  37. <!-- Google Analytics Content Experiment code -->
  38. <script>function utmx_section(){}function utmx(){}(function(){var
  39. k='93140393-95',d=document,l=d.location,c=d.cookie;
  40. if(l.search.indexOf('utm_expid='+k)>0)return;
  41. function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.
  42. indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.
  43. length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write(
  44. '<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl':
  45. '://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+
  46. '&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().
  47. valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+
  48. '" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})();
  49. </script><script>utmx('url','A/B');</script>
  50. <!-- End of Google Analytics Content Experiment code -->
  51. <script>
  52. $(document).ready(function() {
  53. $(".signup label").click(function(){
  54. $(".signup label").removeClass("first");
  55. $(this).addClass("first");
  56. });
  57. $('#next').click(function() {
  58. var res_check_email = check_email(),
  59. res_check_username = check_username(),
  60. res_check_password = check_password();
  61.  
  62. res_check_username.then(function() {
  63. if (res_check_email && res_check_password) {
  64. var i = new Image();
  65.  
  66. i.src = "//javhd.com/st/conversion.gif?goal=2";
  67. gaExtraTracking('CLICK2BILLING');
  68. $("#join-form").submit();
  69. } else {
  70. if (!res_check_email) {
  71. $("#join_email").focus();
  72. } else if (!res_check_password) {
  73. $("#join_password").focus();
  74. }
  75. }
  76. }, function() {
  77. if (!res_check_email) {
  78. $("#join_email").focus();
  79. } else {
  80. $("#join_username").focus();
  81. }
  82. })
  83. return false;
  84. });
  85.  
  86. $("#join_password").change(function() {
  87. return check_password();
  88. });
  89.  
  90. $("#join_email").change(function() {
  91. return check_email();
  92. });
  93.  
  94. $("#join_username").change(function(){
  95. return check_username();
  96. });
  97.  
  98. $("#back").click(function () {
  99. $(".step22").fadeOut(400).delay( 800 );
  100. $(".step21").fadeIn(400).delay( 800 );
  101. });
  102. $('input[name="signup[custom5]"]').val(get_cookie('_ga'));
  103. $('input[name="signup[custom4]"]').val(get_cookie('__utmx'));
  104. $('input[name="signup[custom3]"]').val(get_cookie('signup[custom3]'));
  105. });
  106.  
  107. function check_password() {
  108. var password= $("#join_password").val();
  109. var pwdre=/^[A-Za-z0-9]{6,16}$/;
  110. if(pwdre.test(password)){
  111. $(".password-error").empty();
  112. $(".check-password").removeClass('state-error');
  113. $(".check-password .success").show();
  114. return true;
  115. }
  116. else{
  117. $(".check-password .success").hide();
  118. $(".check-password").addClass('state-error');
  119. $(".password-error").html("{/literal}{i}Password must be from 6 to 16 characters and use only A-Z and 0-9!{/i}{literal}");
  120. return false;
  121. }
  122. }
  123.  
  124. function check_email() {
  125. var email= $("#join_email").val();
  126. var emailre=/^[A-Za-z0-9\._-]+@[A-Za-z0-9\._-]+\.[A-Za-z]{2,4}$/;
  127. if (emailre.test(email)){
  128. $(".email-error").empty();
  129. $(".check-email").removeClass('state-error');
  130. $(".check-email .success").show();
  131. return true;
  132. }
  133. else{
  134. $(".check-email .success").hide();
  135. $(".check-email").addClass('state-error');
  136. $(".email-error").html("{/literal}{i}Email is required!{/i}{literal}");
  137. return false;
  138. }
  139. }
  140.  
  141. function check_username() {
  142. var username= $("#join_username").val();
  143. var unamere=/^[A-Za-z0-9]{6,}$/;
  144. var deferred = $.Deferred();
  145.  
  146. if (unamere.test(username)) {
  147. $.ajax({
  148. type:"POST",
  149. url: "/check_signup.php",
  150. dataType: 'json',
  151. data:"username="+username+"&act=check_name",
  152. beforeSend: function() {
  153. return;
  154. },
  155. success: function(data) {
  156. if (data.status == '1') {
  157. $(".username-error").empty();
  158. $(".check-username").removeClass('state-error');
  159. $(".check-username .success").show();
  160. deferred.resolve();
  161. } else {
  162. $(".check-username .success").hide();
  163. $(".check-username").addClass('state-error');
  164. $(".username-error").html("{/literal}{i}Username is already exists!{/i}{literal}");
  165. deferred.reject();
  166. }
  167. },
  168. error: function() {deferred.reject(); return;}
  169. });
  170. }
  171. else {
  172. $(".check-username .success").hide();
  173. $(".check-username").addClass('state-error');
  174. $(".username-error").html("{/literal}{i}Username must be from 6 to 16 characters and use only A-Z and 0-9!{/i}{literal}");
  175. deferred.reject();
  176. }
  177. return deferred.promise();
  178. }
  179.  
  180. </script>
  181. {/literal}
  182.  
  183. {literal}
  184. <!-- Start Visual Website Optimizer Asynchronous Code -->
  185. <script type='text/javascript'>
  186. var _vwo_code=(function(){
  187. var account_id=141350,
  188. settings_tolerance=2000,
  189. library_tolerance=2500,
  190. use_existing_jquery=false,
  191. // DO NOT EDIT BELOW THIS LINE
  192. f=false,d=document;return{use_existing_jquery:function(){return use_existing_jquery;},library_tolerance:function(){return library_tolerance;},finish:function(){if(!f){f=true;var a=d.getElementById('_vis_opt_path_hides');if(a)a.parentNode.removeChild(a);}},finished:function(){return f;},load:function(a){var b=d.createElement('script');b.src=a;b.type='text/javascript';b.innerText;b.onerror=function(){_vwo_code.finish();};d.getElementsByTagName('head')[0].appendChild(b);},init:function(){settings_timer=setTimeout('_vwo_code.finish()',settings_tolerance);this.load('//dev.visualwebsiteoptimizer.com/j.php?a='+account_id+'&u='+encodeURIComponent(d.URL)+'&r='+Math.random());var a=d.createElement('style'),b='body{opacity:0 !important;filter:alpha(opacity=0) !important;background:none !important;}',h=d.getElementsByTagName('head')[0];a.setAttribute('id','_vis_opt_path_hides');a.setAttribute('type','text/css');if(a.styleSheet)a.styleSheet.cssText=b;else a.appendChild(d.createTextNode(b));h.appendChild(a);return settings_timer;}};}());_vwo_settings_timer=_vwo_code.init();
  193. </script>
  194. <!-- End Visual Website Optimizer Asynchronous Code -->
  195. {/literal}
  196. </head>
  197. <body{if $user_lang=='jp'} class="jp"{/if}>
  198. <!-- START Exoclick Goal Tag | JavHD Join32 Page Visit -->
  199. <img width="1" height="1" src="http://main.exoclick.com/tag.php?goal=0b4ade12f95d97ce2ac8b3544b479a10" style="display:none;">
  200. <!-- END Exoclick Goal Tag | JavHD Join32 Page Visit -->
  201. {literal}
  202. <script>
  203. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  204. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  205. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  206. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  207.  
  208. ga('create', 'UA-27524386-24', 'auto');
  209. ga('send', 'pageview', {
  210. 'page': 'http://enter.javhd.com/signup/signup.php?step=signup&tpl=join32',
  211. 'title': 'TYPE:DEFAULT:JOIN32_TITLE:JAVHD.com - Join page'
  212. });
  213.  
  214. function gaExtraTracking(typeEvent){
  215. if (typeof typeEvent === 'undefined') typeEvent = 'CLICK2BILLING';
  216.  
  217. ga('send', 'pageview', {
  218. 'page': 'ExtraTracking',
  219. 'title': 'LOCATION:DEFAULT:JOIN32_TYPE:'+ typeEvent
  220. });
  221. }
  222.  
  223. $(function() {
  224. $('.js-gaBtnBilling').click(function(){
  225. gaExtraTracking('CLICK2BILLING')
  226. });
  227. });
  228. </script>
  229. {/literal}
  230. <div class="bg">
  231. <header>
  232. <div class="center">
  233. <a href="http://javhd.com/{if $user_lang=='jp'}ja{else}{$user_lang}{/if}/tour1" class="logo"></a>
  234. <p><span class="icon1 js-netstat-videos">16,528</span> {i}Movies{/i}<span class="icon2 js-netstat-pictures">61,975</span> {i}Pictures{/i}<span class="icon3 js-netstat-models">830</span> {i}Models{/i}<span class="icon4 js-netstat-sizes">5600 Gb</span> {i}of content{/i}</p>
  235. <ul class="lang">
  236. <li {if $user_lang=='en'}class="first"{/if}><a class="en" href="/set_lang.php?lang=en" title="English">English{if $user_lang=='en'} &#9662;{/if}</a></li>
  237. <li {if $user_lang=='jp'}class="first"{/if}><a class="jp" href="/set_lang.php?lang=jp" title="日本語">日本語{if $user_lang=='jp'} &#9662;{/if}</a></li>
  238. <li {if $user_lang=='fr'}class="first"{/if}><a class="fr" href="/set_lang.php?lang=fr" title="Français">Français{if $user_lang=='fr'} &#9662;{/if}</a></li>
  239. <li {if $user_lang=='de'}class="first"{/if}><a class="de" href="/set_lang.php?lang=de" title="Deutsch">Deutsch{if $user_lang=='de'} &#9662;{/if}</a></li>
  240. <li {if $user_lang=='es'}class="first"{/if}><a class="es" href="/set_lang.php?lang=es" title="Español">Español{if $user_lang=='es'} &#9662;{/if}</a></li>
  241. <li {if $user_lang=='vi'}class="first"{/if}><a class="vi" href="/set_lang.php?lang=vi" title="Tiếng Việt">Tiếng Việt{if $user_lang=='vi'} &#9662;{/if}</a></li>
  242. <li {if $user_lang=='zh'}class="first"{/if}><a class="ch" href="/set_lang.php?lang=zh" title="正体字/繁体字">正体字/繁体字{if $user_lang=='zh'} &#9662;{/if}</a></li>
  243. <li {if $user_lang=='tw'}class="first"{/if}><a class="ch" href="/set_lang.php?lang=tw" title="正體字/繁體字">正體字/繁體字{if $user_lang=='tw'} &#9662;{/if}</a></li>
  244. </ul>
  245. </div>
  246. </header>
  247. <div class="center">
  248. <div class="clear"></div>
  249. <div class="thumbs">
  250. <img src="http://static.javhd.com/sb/596x446-1.jpg"><img src="http://static.javhd.com/sb/join-1-cwpbd-46.gif"><img src="http://static.javhd.com/sb/596x446-2.jpg">
  251. </div>
  252. <form action="signup.php" method="POST" id="join-form">
  253. <input type="hidden" name="nats" value="{$nats_code}" />
  254. <input type="hidden" name="step" value="signup" />
  255. <input type="hidden" name="formloaded" value="1" />
  256. <input type="hidden" name="signup[reuse_matching_user]" value="1" />
  257. <input type="hidden" name="signup[rename_old_member]" value="1" />
  258. <input type="hidden" name="signup[mailok]" value="1" />
  259. <input type="hidden" name="cascade" value="15" />
  260. <input type="hidden" name="tpl" value="join32" />
  261. <input type="hidden" name="signup[custom2]" value="join32" />
  262. <input type="hidden" name="signup[custom5]" value="" />
  263. <input type="hidden" name="signup[custom3]" value="" />
  264. <input type="hidden" name="signup[custom4]" value="" />
  265. <input type="hidden" name="nextra[EPOCH][version]" value="3" />
  266. {if $smarty.get.version}
  267. <input type="hidden" name="nextra[EPOCH][version]" value="{$smarty.get.version}" />
  268. {/if}
  269. <div class="info">
  270. <div class="title2 first"><span>1.</span> {i}Create your account{/i}</div>
  271. <div class="account">
  272. <div class="check-email">
  273. <b>{i}Email{/i}:</b><input type="text" id="join_email" placeholder="{i}Must be a valid email{/i}" name="signup[email:1:1:128:::email_check]">
  274. <span class="status"><span class="success"></span><span class="error"><span class="text-holder"><i></i><span class="email-error"></span></span></span></span>
  275. </div>
  276. <div class="check-username">
  277. <b>{i}Username{/i}:</b><input type="text" id="join_username" placeholder="{i}6 or more characters{/i}" name="signup[username:1:6:16:::username_check]">
  278. <span class="status"><span class="success"></span><span class="error"><span class="text-holder"><i></i><span class="username-error"></span></span></span></span>
  279. </div>
  280. <div class="check-password">
  281. <b>{i}Password{/i}:</b>
  282. <input placeholder="{i}6 or more characters{/i}" id="join_password" name="signup[password:1:6:16:::password_check]" type="password">
  283. <span class="status"><span class="success"></span><span class="error"><span class="text-holder"><i></i><span class="password-error"></span></span></span></span>
  284. </div>
  285. <ul>
  286. <li class="first">{i}Payment method{/i}:</li>
  287. <li><label><input type="radio" name="cascade" value="15" checked>&nbsp;&nbsp;{i}Credit Card{/i}<span class="cc visa">visa</span><span class="cc mc">mc</span></label></li>
  288. {if $countrycode == 'GB' || $countrycode == 'DE' || $countrycode == 'ES' || $countrycode == 'AT' || $countrycode == 'FR' || $countrycode == 'IT' || $countrycode == 'RU'}
  289. <li><label><input type="radio" name="cascade" value="4">&nbsp;&nbsp;{i}Direct Debit{/i}<span class="cc dd">dd</span></label></li>
  290. {/if}
  291. </ul>
  292. </div>
  293. <div class="title2"><span>2.</span> {i}Choose your plan{/i}</div>
  294. <div class="membership">
  295. <label {if $program != 9} class="active"{/if}>
  296. <span class="input"><input type="radio" name="signup[optionid]" value="310" {if $program != 9}checked{/if}></span>
  297. <span class="month">{i}12 Months{/i} *</span>
  298. <span class="price small">$12.99 / {i}mo{/i}</span>
  299. <span class="save">75% {i}OFF!{/i}</span>
  300. </label>
  301. <label>
  302. <span class="input"><input type="radio" name="signup[optionid]" value="309"></span>
  303. <span class="month">{i}3 Months{/i} *</span>
  304. <span class="price">$25.65 / {i}mo{/i}</span>
  305. <span class="save">50% {i}OFF!{/i}</span>
  306. </label>
  307. {if $program == 5}
  308. <label>
  309. <span class="input"><input type="radio" name="signup[optionid]" value="77"></span>
  310. <span class="month">{i}1 Month{/i} *</span>
  311. <span class="price">$19.95 / {i}mo{/i}</span>
  312. </label>
  313. {elseif $program == 6}
  314. <label>
  315. <span class="input"><input type="radio" name="signup[optionid]" value="198"></span>
  316. <span class="month">{i}1 Month{/i} *</span>
  317. <span class="price">$14.95 / {i}mo{/i}</span>
  318. </label>
  319. {elseif $program == 7}
  320. <label class="active">
  321. <span class="input"><input type="radio" name="signup[optionid]" value="214" checked></span>
  322. <span class="month">{i}1 Month{/i} *</span>
  323. <span class="price"><span class="old-price">$29.95</span>$7.95 / {i}mo{/i}</span>
  324. </label>
  325. {elseif $program == 9}
  326. <label>
  327. <span class="input"><input type="radio" name="signup[optionid]" value="197"></span>
  328. <span class="month">{i}1 Month{/i} *</span>
  329. <span class="price">$9.95 / {i}mo{/i}</span>
  330. </label>
  331. {else}
  332. <label>
  333. <span class="input"><input type="radio" name="signup[optionid]" value="308"></span>
  334. <span class="month">{i}1 Month{/i} *</span>
  335. <span class="price">$39.95 / {i}mo{/i}</span>
  336. <span class="price"><span class="old-price">$49.95</span>$39.95 / {i}mo{/i}</span>
  337. </label>
  338. {/if}
  339.  
  340. {if $program == 11}
  341. <!--NO TRIAL-->
  342. {else}
  343. <label>
  344. <span class="input"><input type="radio" name="signup[optionid]" value="307"></span>
  345. <span class="month">{i}3 Days Trial{/i} **</span>
  346. <span class="price small">$1.00</span>
  347. </label>
  348. {/if}
  349. </div>
  350.  
  351. <div class="submit">
  352. <a href="#" id="next" class="link1">{i}GET INSTANT ACCESS{/i} &#9656;</a>
  353. </div>
  354. <div class="safe">
  355. <div class="title">{i}100% Secure Online Payment.{/i}</div>
  356. {i}SSL Sertificate VeriSign Сlass 3 Secure Server CA - G3.{/i}
  357. </div>
  358. </div>
  359. </form>
  360. <div class="thumbs">
  361. <img src="http://static.javhd.com/sb/join-12923.gif"><img src="http://static.javhd.com/sb/596x446-3.jpg"><img src="http://static.javhd.com/sb/596x446-4.jpg">
  362. </div>
  363. <div class="clear"></div>
  364. <div class="features">
  365. <strong>{i}You Will Get Access to 15 Asian Niche Sites with Only One Account!{/i}</strong>
  366. <ul>
  367. <li>
  368. <span>{i}ABSOLUTELY NO LIMITS!{/i}</span> {i}DRM FREE, fast download speed and no limits!{/i}
  369. </li>
  370. <li>
  371. <span>{i}SUPERB QUALITY!{/i}</span> {i}We use video cams and technology just like in Holywood!{/i}
  372. </li>
  373. <li>
  374. <span>{i}AMAZING trustability!{/i} </span> {i}We are thinking about you, so our sites are 100% confidential and secure.{/i}
  375. </li>
  376. <li>
  377. <span>{i}HUGE ARCHIVES!{/i} </span> {i}We have 7000+ videos and we add more every day!{/i}
  378. </li>
  379. </ul>
  380. <ul>
  381. <li>
  382. <span>{i}Convenience!{/i} </span> {i}24/7 friendly support and easy user-interface!{/i}
  383. </li>
  384. <li>
  385. <span>{i}SUPER EASY!{/i} </span> {i}No gimmicks, hidden fees, or other rubbish. Honest!{/i}
  386. </li>
  387. <li>
  388. <span>{i}Best offer!{/i} </span> {i}One low price for a network of sites!{/i}
  389. </li>
  390. </ul>
  391. <ul class="last">
  392. <li>
  393. <span>{i}Exclusive!{/i} </span> {i}100% exclusive videos! You won`t find these videos anywhere else!{/i}
  394. </li>
  395. </ul>
  396. <div class="clear"></div>
  397. </div>
  398. </div>
  399. <footer>
  400. <div class="center">
  401. <p class="last"><a href="http://javhd.com/{if $user_lang=='jp'}ja{else}en{/if}/privacy" title="{i}Privacy Policy{/i}">{i}Privacy Policy{/i}</a> | <a href="https://secure.javhd.com/login/?back=javhd.com&lang={if $user_lang=='jp'}ja{else}en{/if}" title="{i}Members Login{/i}">{i}Members Login{/i}</a> | <a href="http://javhd.com/{if $user_lang=='jp'}ja{else}en{/if}/terms" title="{i}Terms of Use{/i}">{i}Terms of Use{/i}</a> {if $user_lang=='en'}| <a href="http://javhd.com/{if $user_lang=='jp'}ja{else}en{/if}/statement2257" title="18 U.S.C. 2257">18 U.S.C. 2257</a>{/if}</p>
  402. <p>{i}<script language="JavaScript" src="https://epoch.com/compliance/epoch_descriptor.php?master_code=M-602347"></script>, our authorized sales agent.{/i}</p>
  403. <p>
  404. * {i}Annual memberships rebill at $155.95 every 12 months until cancelled.{/i}<br />
  405. &nbsp;{i}3 Month memberships rebill at $76.95 every 3 months until cancelled.{/i}<br />
  406. {if $program == 5}
  407. &nbsp;{i}Monthly memberships rebill at $19.95 per month until cancelled.{/i}
  408. {elseif $program == 6}
  409. &nbsp;{i}Monthly memberships rebill at $14.95 per month until cancelled.{/i}
  410. {elseif $program == 7}
  411. &nbsp;{i}Monthly memberships rebill at $9.95 per month until cancelled.{/i}
  412. {elseif $program == 9}
  413. &nbsp;{i}Monthly memberships rebill at $7.95 per month until cancelled.{/i}
  414. {else}
  415. &nbsp;{i}Monthly memberships rebill at $39.95 per month until cancelled.{/i}
  416. {/if}
  417. </p>
  418. <p>** {i}Trial memberships have limited access which then converts to a full membership at $49.95 per month until cancelled.{/i}</p>
  419. <p class="company">&copy; JHDV, {$smarty.now|date_format:"%Y"}</p>
  420. </div>
  421. </footer>
  422. </div>
  423. <img style="position: fixed; z-index: -1;" src="//javhd.com/st/conversion.gif?goal=1"/>
  424. <img style="position: fixed; z-index: -1;" src="http://node1.atas.io/conversion.gif?goal=1"/>
  425. <img src="http://ctrack.trafficjunky.net/ctrack?action=list&type=add&id=join&context=javhd&cookiename=client_tracking"/>
  426. </body>
  427. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement