| Server IP : 192.169.170.185 / Your IP : 216.73.216.97 Web Server : Apache System : Linux p3plmcpnl495852.prod.phx3.secureserver.net 4.18.0-553.52.1.lve.el8.x86_64 #1 SMP Wed May 21 15:31:29 UTC 2025 x86_64 User : akhilnew ( 1712764) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/akhilnew/public_html/ |
Upload File : |
<?php
require_once('header.php');
if($loggedincustomerid):
echo '<br><br>You are already signed in. <a href="'.$baseurl.'account">Click here</a> to go to my account.';
else:
echo <<<EOJ
<div class="row head main"><div class="col s12 m12 l12 center-align"><h1>{$pagetitle}</h1></div></div>
<div class="row">
<div class="col s12 m12 l9" style="float:none;margin:auto;clear:both">
<form action="{$baseurl}login" method="post" name="loginform" class="card form ajax z-depth-0">
<input type="hidden" name="{$token_id}" value="{$token_value}" readonly />
<input type="hidden" name="focus" value="" readonly />
<input type="hidden" name="zipcode" value="" readonly />
<div class="card-content">
<div class="row">
<div class="col s12 m12 l6">
<label for="email">email</label>
<input type="text" name="email" id="email" onkeypress="return (event.keyCode!=13)" />
</div>
<div class="col s12 m12 l6">
<label for="password">password</label>
<input type="password" name="password" id="password" onkeypress="return (event.keyCode!=13)" />
</div>
</div>
<div class="row">
<div class="col s12 m12 l12">
<div class="g-recaptcha" data-sitekey="{$gSiteKey}"></div>
</div>
</div>
</div>
<div class="card-action right-align">
<button type="submit" name="action" class="waves-effect btn-flat grey lighten-3 grey-text text-darken-2" disabled onclick="this.form.focus.value='{$en->encrypt('[FORGOT_PASSWORD]')}'">forgot password</button>
<button type="submit" name="action" class="waves-effect btn-flat blue accent-3 white-text" disabled onclick="this.form.focus.value='{$en->encrypt('[USER_LOGIN]')}'">log in</button>
</div>
</form>
</div>
</div>
EOJ;
endif;
require_once('footer.php');
?>