| 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/patholjournal.com/ |
Upload File : |
<?php
require_once("header.php");
echo $page_content;
if(!$loggedcreds):
$focus = encrypt('[LOGIN]');
echo <<<EOJ
<noscript>Your browser doesn’t support javascript. Please use another browser.</noscript>
<p class="noscript">Your browser doesn’t support form script. Please use another browser.</p>
<form action="{$baseurl}login" method="post" name="loginform" class="form ajax-form" enctype="multipart/form-data" onsubmit="return submitform(this)">
<input type="hidden" name="token" value="{$token}" autocomplete="off" readonly="readonly" />
<input type="hidden" name="focus" value="{$focus}" autocomplete="off" readonly="readonly" />
<input type="hidden" name="zipcode" value="" readonly />
<div class="body">
<div class="row">
<label class="flbl">Email<span>*</span></label>
<input type="text" name="email" autocomplete="off" class="field" />
</div>
<div class="row">
<label class="flbl">Password<span>*</span></label>
<input type="password" name="password" autocomplete="off" class="field" />
</div>
<div class="row">
<input type="submit" name="submit" value="login" disabled="disabled" class="button" />
<div class="loader">Please Wait...</div>
</div>
</div>
</form>
<div class="output"></div>
EOJ;
else:
echo 'You are already logged in. Go to <a href="'.$baseurl.'account">My account</a>.';
endif;
require_once("footer.php");
?>