403Webshell
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/dermatologypaper.com/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/akhilnew/public_html/dermatologypaper.com//header.php
<?php
session_start();
if(file_exists('inc/config.php')){require_once('inc/config.php');}else{die('Database configuration file doesn\'t exist.');}

$req_files = array('csrf', 'encryptions', 'functions', 'sendmail');
foreach($req_files as $req_file){if(file_exists(REQ.$req_file.'.php')){require_once(REQ.$req_file.'.php');}else{die('Required file doesn\'t exist.');}}

$stmt = $mysqli->prepare("SELECT websitename, websiteemail, fromname, fromemail, replyname, replyemail, impactfactor, issn, ads, extensions, signature, editorspicture, gsitekey, gsecretkey, grecaptcha FROM settings ORDER BY settingsid DESC LIMIT 1") or die('An error occurred. Please try after some time.');
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($websitename, $websiteemail, $fromname, $fromemail, $replyname, $replyemail, $impactfactor, $issn, $ads, $extensions, $signature, $editorspicture, $gsitekey, $gsecretkey, $grecaptcha);
$stmt->fetch();
$stmt->close();

$recaptcha= $grecaptcha === 'enabled' ? '<div class="row"><div class="col s12 m12 l12"><div class="g-recaptcha" data-sitekey="'.$gsitekey.'"></div></div></div>' : '';

$filename = pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME);
$pagename = $filename === 'index' ? basename(getcwd()) : $filename;
$basename = basename(dirname(__FILE__));

$loggedcreds = isset($_SESSION['LOGGED_USER_EMAIL']) ? $_SESSION['LOGGED_USER_EMAIL'] : NULL;

$decryptedfocus = filter_input(INPUT_POST, 'focus', FILTER_SANITIZE_STRING);
$decryptedfocus = strip_tags($en->decrypt($fn->escape($decryptedfocus)));

if($_SERVER['REQUEST_METHOD'] === 'POST' && $decryptedfocus):
	if($csrf->check_valid('post')):
		if(file_exists('inc/'.$filename.'.php')):
			require_once('inc/'.$filename.'.php');
			exit();
		else:
			die(output('Required file is missing.'));
		endif;
	else:
		die(output('Submission not allowed.'));
	endif;
endif;

$fn->page_hits($pagename);

$article_status = 'enabled';

$articleparams = filter_input(INPUT_GET, 'params', FILTER_SANITIZE_STRING);
$articleparams = strip_tags($fn->escape($articleparams));
$articleparams = explode('.', $articleparams);
$year   = $fn->element(0, $articleparams);
$volume = substr($fn->element(1, $articleparams), 1);
$issue  = substr($fn->element(2, $articleparams), 1);
$part   = $fn->element(3, $articleparams);
$archivesid = $fn->element(4, $articleparams);

if($pagename == 'archives' && $year && $volume && $issue && $part && $archivesid):
	$stmt = $mysqli->prepare("SELECT title, keywords, description FROM archives WHERE (archivesid = ? AND status = ?) LIMIT 1") or die('An error occurred. Please try after some time.');
	$stmt->bind_param('is', $archivesid, $article_status);
	$stmt->execute();
	$stmt->store_result();
	$stmt->bind_result($page_title, $page_metakeyword, $page_metadescription);
	$stmt->fetch();
	$stmt->close();

	$specialissue = ctype_digit($issue) ? 'Issue ' : 'Special Issue ';

	$head_title	= strip_tags(html_entity_decode($page_title));
	$h1heading	= $year.', Vol. '.$volume.', '.$specialissue.preg_replace('/[^0-9]/', '', $issue).', Part '.$part;
	$page_content = '';
elseif($pagename == 'archives' && $year && $volume && $issue && $part):
	$volume_keywords = '';
	$stmt = $mysqli->prepare("SELECT keywords FROM archives WHERE (year = ? AND volume = ? AND issue = ? AND part = ?)") or die('An error occurred. Please try after some time.');
	$stmt->bind_param('siss', $year, $volume, $issue, $part);
	$stmt->execute();
	$stmt->store_result();
	$stmt->bind_result($keywords);
	while($stmt->fetch()):
		$volume_keywords .= $keywords ? $keywords.', ' : '';
	endwhile;
	$stmt->close();

	$specialissue = ctype_digit($issue) ? 'Issue ' : 'Special Issue ';

	$head_title = $year.', Vol. '.$volume.', '.$specialissue.preg_replace('/[^0-9]/', '', $issue).', Part '.$part.' | '.$websitename;
	$h1heading = $year.', Vol. '.$volume.', '.$specialissue.preg_replace('/[^0-9]/', '', $issue).', Part '.$part;
	$page_metadescription = 'Vol. '.$volume.', '.$issue.' ('.$year.')';
	$page_metakeyword = trim(rtrim($volume_keywords, ', '));
	$page_content = '';
else:
	$stmt = $mysqli->prepare("SELECT title, h1heading, metadescription, metakeyword, content FROM pages WHERE name = ? LIMIT 1") or die('An error occurred. Please try after some time.');
	$stmt->bind_param('s', $pagename);
	$stmt->execute();
	$stmt->store_result();
	$count_rows = $stmt->num_rows();
	$stmt->bind_result($page_title, $h1heading, $page_metadescription, $page_metakeyword, $page_content);
	$stmt->fetch();
	$stmt->close();
	if($count_rows == 0):
		$head_title = ucwords(basename(getcwd())).' | '.$websitename;
		$h1heading = '';$page_metadescription = '';$page_metakeyword = '';$page_content = '';
	else:
		$head_title = html_entity_decode($page_title);
		$h1heading = $h1heading ?: html_entity_decode($head_title);
	endif;
	$page_content = html_entity_decode($page_content);
endif;

$copyright_year = date('Y');

$protocol = !empty($_SERVER['HTTPS']) ? 'https' : 'http';
$canonicalUrl = $protocol . '://' . $_SERVER['HTTP_HOST'] . strtok($_SERVER['REQUEST_URI'], '?');

echo <<<EOJ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{$page_metadescription}" />
<meta name="keywords" content="{$page_metakeyword}" />
<meta name="Author" content="{$websitename}-{$fromemail}" />
<meta name="Robots" content="index, follow" />
<meta name="google-site-verification" content="odnikPwZc66oPC_mlpmq-OCXNBimdT9HzTHNYnxOYRA" />
<meta name="theme-color" content="#1976d2" />
<title>{$head_title}</title>
EOJ;
if($pagename == 'archives' && $year && $volume && $issue && $part && $archivesid):
	function multiexplode($delimiters, $string){
		$ready = str_replace($delimiters, $delimiters[0], $string);
		$launch = explode($delimiters[0], $ready);
		return $launch;
	}
	$stmt = $mysqli->prepare("SELECT doi, month, year, refnumber, volume, issue, part, authorname, title, abstract, pagenumber, description, file, creation FROM archives WHERE (archivesid = ? AND status = ?) LIMIT 1") or die('An error occurred. Please try after some time.');
	$stmt->bind_param('is', $archivesid, $article_status);
	$stmt->execute();
	$stmt->store_result();
	$count_rows = $stmt->num_rows();
	$stmt->bind_result($m_doi, $m_month, $m_year, $m_refnumber, $m_volume, $m_issue, $m_part, $m_authorname, $m_title, $m_abstract, $m_pagenumber, $m_description, $m_file, $m_creation);
	$stmt->fetch();
	$stmt->close();
	if($count_rows === 1):

	echo PHP_EOL;
	
echo <<<EOJ
<meta name="citation_journal_title" content="{$websitename}" />
<meta name="citation_journal_abbrev" content="Int. J. Dermatol. Venereology Leprosy Sci.">
<meta name="citation_publisher" content="Comprehensive Publications">
EOJ;

	echo PHP_EOL;
	
	$m_authors = multiexplode(array(',', ' and ', ' And '), $m_authorname);
	foreach($m_authors as $author):
		echo '<meta name="citation_author" content="'.trim($author).'" />'.PHP_EOL;
	endforeach;

	$m_month = date('m', strtotime(substr($m_month, 0, 3)));
	$m_title = strip_tags(html_entity_decode($m_title));
	$m_creation = date('Y/m/d', strtotime($m_creation));
	$m_pagenumber = explode('-', $m_pagenumber);
	$m_abstract = strip_tags(html_entity_decode($m_abstract));
echo <<<EOJ
<meta name="citation_title" content="{$m_title}" />
<meta name="citation_online_date" content="{$m_creation}" />
<meta name="citation_publication_date" content="{$m_year}" />
<meta name="citation_volume" content="{$m_volume}" />
<meta name="citation_issue" content="{$m_issue}" />
<meta name="citation_issn" content="2664-942X" />
<meta name="citation_firstpage" content="{$m_pagenumber[0]}" />
<meta name="citation_lastpage" content="{$m_pagenumber[1]}" />
<meta name="citation_doi" content="{$m_doi}" />
<meta name="citation_abstract_html_url" content="{$baseurl}archives/{$year}.v{$volume}.i{$issue}.{$part}.{$archivesid}" />
<meta name="citation_pdf_url" content="{$baseurl}archives/{$m_year}/vol{$m_volume}issue{$m_issue}/Part{$m_part}/{$m_file}" />
<meta name="citation_article_type" content="Research Article" />
<meta name="citation_abstract" content="{$m_abstract}" />
EOJ;
	endif;
endif;

if($pagename == 'archives' && $year && $volume && $issue && $part && $archivesid):
	echo PHP_EOL;
	function explodeAuthors($delimiters, $string){
		$ready = str_replace($delimiters, $delimiters[0], $string);
		$launch = explode($delimiters[0], $ready);
		return $launch;
	}
	$stmt = $mysqli->prepare("SELECT doi, month, year, refnumber, volume, issue, part, authorname, title, abstract, pagenumber, keywords, file, creation FROM archives WHERE (archivesid = ? AND status = 'enabled')") or die('An error occurred. Please try after some time.');
	$stmt->bind_param('i', $archivesid);
	$stmt->execute();
	$stmt->store_result();
	$stmt->bind_result($m_doi, $m_month, $m_year, $m_refnumber, $m_volume, $m_issue, $m_part, $m_authorname, $m_title, $m_abstract, $m_pagenumber, $m_keywords, $m_file, $m_creation);
	$stmt->fetch();
	$stmt->close();

	$m_title = str_replace('"', '', strip_tags(html_entity_decode($m_title)));
	$m_abstract = str_replace(array('\\', '"', '\''), '', strip_tags($m_abstract));
	$datePublished = date('Y-m-dTh:i:s', strtotime($m_creation));
	$m_keywords = explode(',', $m_keywords);
	$m_keywordsList = array();
	foreach($m_keywords as $m_keywords1):
		$m_keywordsList[] = '"'.trim($m_keywords1).'"';
	endforeach;
	$m_keywords = implode(',', $m_keywordsList);

	$m_authorname = explodeAuthors(array(',', ' and ', ' And '), $m_authorname);
	$m_authornameList = array();
	foreach($m_authorname as $m_author):
		$m_authornameList[] = '{"name":"'.trim($m_author).'","@type":"Person"}';
	endforeach;
	$m_authorname = implode(',', $m_authornameList);

	$m_pagenumber = explode('-', $m_pagenumber);
	$copyrightYear = date('Y');

echo <<<EOJ
<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "ScholarlyArticle",
    "@id": "{$baseurl}archives/{$year}.v{$volume}.i{$issue}.{$part}.{$archivesid}",
    "name": "{$m_title}",
    "datePublished": "{$datePublished}",
    "isPartOf": {
        "@id": "{$baseurl}archives/{$year}.v{$volume}.i{$issue}.{$part}",
        "@type": "PublicationIssue",
        "issueNumber": "{$m_issue}",
        "datePublished": "{$datePublished}",
        "isPartOf": {
            "@id": "{$baseurl}",
            "@type": "Periodical",
            "name": "{$websitename}",
            "issn": [
                "2664-9411"
            ]
        }
    },
    "url": "{$baseurl}archives/{$year}.v{$volume}.i{$issue}.{$part}.{$archivesid}",
    "keywords": [{$m_keywords}],
    "inLanguage": "en",
    "copyrightHolder": "{$websitename}",
    "copyrightYear": "{$copyrightYear}",
    "publisher": "Akinik Publications",
    "sameAs": "",
    "author": [{$m_authorname}],
    "description": "{$m_abstract}",
    "pageStart": "{$m_pagenumber[0]}",
    "pageEnd": "{$m_pagenumber[1]}",
    "headline": "{$m_title}"
}
</script>
EOJ;
endif;

echo PHP_EOL;

if ($pagename === 'dermatologypaper.com') :
echo <<<EOJ
<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@graph": [
		{
			"@type": "Periodical",
			"name": "{$websitename}",
			"url": "{$baseurl}",
			"issn": ["2664-9411", "2664-942X"],
			"editor": [{
				"@type": "Person",
				"givenName": "Dr. Nishat",
				"familyName": "Fatema"
			}],
			"publisher": [{
				"@type": "Organization",
				"name": "Comprehensive Publications"
			}],
			"description": "{$page_metadescription}"
		},
		{
			"@type": "WebPage",
			"name": "{$websitename}",
			"url": "{$baseurl}",
			"primaryImageOfPage": {
				"@id": "{$baseurl}#primaryimage"
			},
			"image": { "@id": "{$baseurl}#primaryimage" },
			"thumbnailUrl": "{$baseurl}uploads/170916102751.jpg",
			"description": "{$page_metadescription}",
			"publisher": {
				"@type": "Organization",
				"name": "Comprehensive Publications",
				"url": "https://www.comprehensivepubs.com"
			},
			"breadcrumb": {
				"@type": "BreadcrumbList",
				"itemListElement": [
					{
						"@type": "ListItem",
						"position": 1,
						"name": "Home",
						"item": "{$baseurl}"
					}
				]
			}
		},
		{
			"@type": "Organization",
			"name": "{$websitename}",
			"url": "{$baseurl}",
			"logo": "{$baseurl}images/logo.png",
			"contactPoint": {
				"@type": "ContactPoint",
				"telephone": "+91-9711224068",
				"contactType": "Customer Support",
				"areaServed": "Worldwide",
				"availableLanguage": ["English"]
			}
		}
	]
}
</script>

<meta property="og:type" content="website">
<meta property="og:url" content="{$baseurl}">
<meta property="og:title" content="{$head_title}">
<meta property="og:description" content="{$page_metadescription}">
<meta property="og:image" content="{$baseurl}uploads/170916102751.jpg">
EOJ;
echo PHP_EOL;
endif;
?>
<link rel="canonical" href="<?php echo $canonicalUrl;?>">
<link rel="shortcut icon" href="<?php echo $imageurl;?>favicon.ico" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Domine:400,700|Material+Icons" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/css/materialize.min.css" />
<style>
*{margin:0;box-sizing:border-box !important;outline:none}html,body{width:100%;height:100%}
body{background:#e5e5e5 url('<?php echo $imageurl;?>bg.png') left top repeat-x;font-size:13px;font-family:'Domine', sans-serif;overflow-y:scroll}

a{text-decoration:none}a:hover{text-decoration:underline}img,a img{max-width:100%;border:none;object-fit:cover;overflow:hidden}
b,strong,label,th,h1,h2,h3,h4,h5,h6{margin:0;font-weight:700}h1{font-size:24px}h2{font-size:22px}h3{font-size:18px}h4{font-size:16px}h5{font-size:14px}h6{font-size:12px}

button,input,select,textarea{height:36px !important;margin:0 !important;padding:0 7px !important;border-radius:4px !important;-webkit-border-radius:4px !important;font-size:13px !important;font-family:'Domine', sans-serif}

.fluid,.head,.body,.foot{float:left;width:100%;height:auto}.container{width:77%}.row{margin-bottom:0}

.topbar{padding:7px 0}.topbar a{margin-left:10px;display:inline-block}

.header{padding:10px 0}

.header form{width:280px;border:1px solid #d9d9d9;border-radius:2px;-webkit-border-radius:2px;overflow:hidden;display:flex}
.header form input[type=text],.topbar form input[type=text]:focus{margin:0;padding-left:8px;border:none !important;box-shadow:none !important}
.header form input[type=text]::placeholder{color:#777}
.header form button{width:36px;height:36px !important;padding:0}
.header form button i{line-height:36px !important;font-size:21px}

.banner img{width:100%;margin:0;display:block}

nav{border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0}
nav ul{display:flex}
nav ul li{flex-grow:1}
nav ul li:nth-child(6){background-color:#35926e;}
nav ul li a{line-height:40px;color:#fff;font-size:12px;font-weight:700;text-align:center;text-transform:uppercase}
nav a:hover,.sidenav a:hover{text-decoration:none}

nav .nav-wrapper,.sidenav-trigger,.sidenav-trigger i{height:39px !important;min-height:39px !important;line-height:39px !important}
nav .sidenav-trigger{margin:0 10px 0 0}

.holder{padding:10px}

.sidebar .head{padding:5px 10px;background-color:#1976d2;color:#fff;font-weight:700}
.sidebar .body{margin-bottom:15px;border:1px solid #e5e5e5;border-top:none;border-bottom:none}
.sidebar .body li{padding:5px 10px;border-bottom:1px solid #e5e5e5}
.sidebar .body li a,.sidebar .body li strong{color:#000;font-weight:700}

.content{text-align:justify}
.content .phead,.content .chead{margin-bottom:10px;padding-bottom:5px;border-bottom:2px solid #1565c0;font-family:'Domine', serif}
.content .chead{border-bottom:1px dotted #ddd}
.content .phead h1{color:#1565c0;font-size:16px;font-weight:700}.content .chead h2{font-size:14px;font-weight:700}
.content a{color:#1565c0}
.content img{max-width:100%;height:auto !important}

.boards,.archives{margin-bottom:10px;border-radius:3px;-webkit-border-radius:3px;overflow:hidden}
.boards .head{padding:7px;font-weight:700}
.boards .body{border:1px solid #e5e5e5}
.boards .body .col{padding:10px;display:flex}
.boards .body .left img{width:70px;max-width:70px;border-radius:5px;-webkit-border-radius:5px}
.boards .body .left:first-child{padding-right:10px}

.archives .head{padding:7px 10px;font-weight:700}
.archives .body{padding:0 10px 10px;border:1px solid #e5e5e5}
.archives .body .issue,.archives .body .parts{font-size:12px;font-weight:700}
.archives .body .issue{margin-top:10px;margin-bottom:5px}

.articles{margin-bottom:10px}
.articles th.xs{width:50px}.articles th.sm{width:100px}
.articles th,.articles td{padding:5px;vertical-align:top}
.articles td .body{margin-bottom:5px}
.articles td .body a{font-weight:700}

.abstract .body{margin-top:10px}
.abstract .foot{font-size:11px;font-weight:500}

.abstract .body a.btn-flat{height:37px;padding:1px 10px 0;font-size:12px;font-weight:700}
.abstract .body a.btn-flat:hover{text-decoration:none}

.citation{margin-top:20px;padding:10px;background-color:#cbe0cb;border:1px solid #900;color:#0000cc}
.citation .head{margin-bottom:5px;padding-bottom:5px;border-bottom:1px dashed #999;font-weight:700}
.citation .body{line-height:18px;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto;overflow-wrap:break-word}
.citation .body a{color:#0000cc;text-decoration:underline}
.citation .body a:hover{text-decoration:none}

table.indexing{float:left;width:100%;border-collapse:collapse}
table.indexing td{padding:5px 0;border:1px solid #ccc;text-align:center}
table.indexing td img{float:none}

.form.ajax{border:1px solid #e5e5e5;border-radius:5px;-webkit-border-radius:5px;clear:both;overflow:hidden}
.form.ajax .card-content{padding:20px 24px 5px}
.form.ajax .card-content .col{margin-bottom:15px}
.form.ajax .card-content label{float:left;color:#000;font-size:12px}
.form.ajax .card-content input,.form.ajax .card-content select,.form.ajax .card-content textarea{background-color:#fff;border:1px solid #ddd}
.form.ajax .card-content input:focus,.form.ajax .card-content select:focus,.form.ajax .card-content textarea:focus{border-color:#2979ff;box-shadow:none;outline:none}
.form.ajax .card-content textarea{min-height:100px;padding:7px !important}
.form.ajax .card-content .file-path{height:35px !important}
.form.ajax .card-content .file-path::placeholder{color:#555}
.form.ajax .card-content .btn{height:35px;line-height:34px;border-radius:3px;-webkit-border-radius:3px;box-shadow:none;font-size:12px}
.form.ajax .card-action button{padding:0 15px !important}

.progress{margin:0;border-radius:0;position:absolute;top:0;left:0;z-index:999;display:none}
#toast-container{top:auto;right:30px;bottom:30px}.toast{font-size:14px}

.smsg{padding:10px;background-color:#ecf9e8;border:1px solid #94bc87;border-radius:3px;-webkit-border-radius:3px;color:#416336;font-weight:700;display:none}

.footer{padding:12px 0;font-size:11px;font-weight:700}
.footer a{margin-bottom:10px;display:inline-block}

.whatsapp{width:40px;height:140px;margin:auto;position:fixed;top:auto;bottom:10px;right:0;z-index:99999;display:none}

.statusbar .head{margin-bottom:10px}
.statusbar table{table-layout:fixed}
.statusbar table tr{border:none}
.statusbar table td{height:40px;padding:5px 0px;font-weight:500;text-align:center;vertical-align:middle}
.statusbar table tfoot td{font-size:11px;text-transform:uppercase;vertical-align:top}
.statusbar table td.l{background:url(<?php echo $imageurl;?>gray-bar.png) center center no-repeat}
.statusbar table td.c{background:url(<?php echo $imageurl;?>gray-circle.png) center center no-repeat;background-size:contain}
.statusbar table td.r{background:url(<?php echo $imageurl;?>gray-bar.png) center center no-repeat}
.statusbar table td.l.act{background:url(<?php echo $imageurl;?>green-bar.png) center center no-repeat}
.statusbar table td.c.act{background:url(<?php echo $imageurl;?>green-circle.png) center center no-repeat;background-size:contain}
.statusbar table td.r.act{background:url(<?php echo $imageurl;?>green-bar.png) center center no-repeat}
.aJyEal tr{border:none;}
.aJyEal tr td{padding:5px;border:1px solid #ddd;}
.aJyEal tr td:first-child{background-color:#9a9aff}
.aJyEal tr td:last-child{background-color:#bbbbf9}
@media(max-width:992px){
.container{width:100%}.content{margin-bottom:20px}

.sidenav{background:#616161 url('<?php echo $imageurl.'sidebar-grid.png';?>') left bottom no-repeat}
.sidenav li{background-color:#616161;line-height:normal;border-bottom:1px solid #757575;color:#fff;font-size:14px;font-weight:500;text-transform:uppercase}
.sidenav li img{height:40px;padding:5px 10px;border-radius:2px;display:block}
.sidenav li>a{height:auto;line-height:normal;padding:10px 20px;color:#fff;font-size:14px !important}
.sidenav li>a:hover{text-decoration:none}
}
@media(max-width:768px){
body{background:#e5e5e5}
.topbar .col,.header .col{text-align:center}.topbar .col a{margin:0 5px}
.header a{display:inline-block}
.header form{width:100%;margin-top:5px}
.tab-clear{margin-top:20px;clear:both;display:block}
}
@media(max-width:600px){
.form.ajax .card-content{padding:10px 15px 0}.form.ajax .card-action{padding:15px}
#toast-container{right:0;bottom:0}
}

.bs-row {--bs-gutter-x: 1.5rem;display: flex;flex-wrap: wrap;margin-right: calc(-0.5 * var(--bs-gutter-x));margin-left: calc(-0.5 * var(--bs-gutter-x));text-align: center;}
.bs-row > * {flex-shrink: 0;width: 25%;display: flex;flex-direction: column;align-items: center;justify-content: space-between;row-gap: 10px;margin-bottom: 30px;padding-right: calc(var(--bs-gutter-x) * 0.5);padding-left: calc(var(--bs-gutter-x) * 0.5);}
.bs-row > * > a {display: inline-flex;flex-direction: column;row-gap: 8px;}

.mobilebuttons{display: flex;align-items: center;justify-content: center;clear: both;float: left;width: 100%;column-gap: 10px;margin-top: 10px;}
.mobilebuttons.d-flex-col{flex-direction: column;row-gap: 10px;}
.mobilebuttons .enqbtn{border-radius: 17px;border: 1px solid #2e3192;height: 34px;width: 100%;background: #fff;display: flex;align-items: center;justify-content: center;color: #2e3192;font-weight: 500;column-gap: 5px;text-decoration: none;cursor: pointer;font-size: 12px !important;}
.mobilebuttons .enqbtn.bgbtn{background: #2e3192;color: #fff;}
.mobilebuttons .enqbtn.hideonlarge{display: none;}
.mobilebuttons .enqbtn span.material-icons{font-size: 16px;}

.subscriptionenquirycanvas{background: #e6ebf8;position: fixed;bottom: -84px;left: 0;right: 0;z-index: 999;padding: 0 12px;box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.15);transition: all linear 0.25s;height: 74px;}
.subscriptionenquirycanvas .container{display: flex;align-items: center;justify-content: space-between;height: 74px;}
.subscriptionenquirycanvas .container .hideonmobile{display: flex;align-items: center;column-gap: 15px;}
.subscriptionenquirycanvas .container .buttongroup{display: flex;align-items: center;column-gap: 5px;}
.subscriptionenquirycanvas .container a.enqbtn{padding: 0 9px;background: #fe610c;border-radius: 5px;color: #fff;font-weight: 500;font-family: 'Roboto', sans-serif;color: #fff;font-size: 13px;height: 34px;display: inline-flex;border: 1px solid transparent;align-items: center;column-gap: 5px;text-decoration: none;}
.subscriptionenquirycanvas .container a.enqbtn.wab{border-color: #fe610c;background: #fff;color: #fe610c;}
@media(max-width:600px){.bs-row > * {width: 50%;}.mobilebuttons .enqbtn.hideonlarge{display: flex;}.mobilebuttons .enqbtn.hideonsmall{display: none;}.subscriptionenquirycanvas .container .hideonmobile{display: none;}.subscriptionenquirycanvas .container{justify-content: center;}}

.subscriptionform{background: #000a;position: fixed;top: 0;bottom: 0;left: 0;right: 0;z-index: 999;font-family: 'Roboto', sans-serif;display: none;}
.subscriptionform .subscriptionformcentered{display: flex;align-items: center;justify-content: center;width: 100%;height: 100vh;padding: 16px;}
.subscriptionform .subscriptionformcentered .subscriptionformcard{background: #fff;border-radius: 12px;width: 500px;overflow: hidden;}
.subscriptionform .subscriptionformcentered .subscriptionformcard .subscriptionformcardhead{background: #0259b9;height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;position: relative;row-gap: 10px;}
.subscriptionform .subscriptionformcentered .subscriptionformcard .subscriptionformcardhead h5{color: #fff;font-size: 20px;font-weight: 500;font-family: 'Roboto', sans-serif;}
.subscriptionform .subscriptionformcentered .subscriptionformcard .subscriptionformcardhead b{color: #fff;font-size: 15px;font-weight: 500;font-family: 'Roboto', sans-serif;}
.subscriptionform .subscriptionformcentered .subscriptionformcard .subscriptionformcardhead button{background: none;width: 24px;height: 24px;display:flex;align-items: center;justify-content: center;border: none;cursor: pointer;position: absolute;top: 10px;right: 10px;color: #fff;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form{padding: 15px 0 2px;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row{--bs-gutter-x: 1rem;display: flex;flex-wrap: wrap;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row > *{width: 100%;flex-shrink: 0;padding-right: calc(var(--bs-gutter-x) * 1);padding-left: calc(var(--bs-gutter-x) * 1);margin-bottom: 15px;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row-2 > *{width: 50%;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row label{text-transform: uppercase;font-size: 11px;font-weight: 500;color: #333;float: left;display: block;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row .subscriptionfield{background: #fff;border-radius: 4px;width: 100%;border:1px solid #dee2e6;height: 34px;padding:0 7px;box-shadow: none;outline: none;font-family: 'Roboto', sans-serif;float: left;margin: 0;box-sizing: border-box;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row textarea.subscriptionfield{height: 80px !important;padding:7px !important;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row .subscriptionfield:focus{border-color: #0259b9;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row button,
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row .sloader{width: 130px;height:34px;line-height:34px;padding:0px 12px;background:#0259b9;border:none;border-radius:4px;color:#fff;font-size:12px;font-weight:500;text-align:center;text-transform:uppercase;cursor:pointer;box-shadow:0px 1px 1px rgba(0,0,0,0.3);margin:auto;display: inline-block;font-family: 'Roboto', sans-serif;}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row button:active{background:#187bcf}
.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row .sloader{opacity: 0.5;cursor: default;display: none;}
.customtoast button{background: none;width: 24px !important;height: 24px !important;display:flex;align-items: center;justify-content: center;border: none;cursor: pointer;margin:0 !important;padding:0 !important;}
@media(max-width:600px){.subscriptionform .subscriptionformcentered .subscriptionformcard form .form-row-2 > *{width: 100%;clear: both;}}

.redpaper-widget {
    width: 100%;
    padding: 8px;
    text-align: center;
    background: #fff;
    box-shadow: 0 8px 24px rgba(204, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}
.redpaper-widget:hover {
    transform: translateY(-4px);
}
.redpaper-widget img {
    float: none !important;
    width: 90px;
    height: auto;
}
.redpaper-widget .headline {
    font: 700 18px/1.2 sans-serif;
    color: #fff;
    background: #cc0000;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
}
.redpaper-widget .cta {
    font: 600 15px/1.4 sans-serif;
    color: #cc0000;
}
.redpaper-widget .check-btn {
    background: #cc0000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font: 600 14px/1.4 sans-serif;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.redpaper-widget .check-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.1), rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    animation: wave-slide 2s infinite;
    z-index: 0;
}
.redpaper-widget .check-btn:hover {
    background: #a80000;
}
.redpaper-widget .check-btn span {
    position: relative;
    z-index: 2;
}

@keyframes wave-slide {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}
</style>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body class="black-text">
<?php
if($loggedcreds):
	$authlink = '<a href="'.$baseurl.'account" class="white-text">My Account</a>';
	$authlink.= '<a href="'.$baseurl.'logout" class="white-text">Logout</a>';
else:
	$authlink = '<a href="'.$baseurl.'login" class="white-text">Login</a>';
	$authlink.= '<a href="'.$baseurl.'signup" class="white-text">Signup</a>';
endif;

if($pagename !== 'manuscript-writing-service'):
echo <<<EOJ
<div class="head-banner" style="padding:10px 0 7px;display:block;text-align:center">
	<a href="{$baseurl}manuscript-writing-service" style="display:inline-block">
		<img src="{$imageurl}manuscript-writing-service-banner.jpg" alt="Manuscript Writing Service" style="display:block;border:1px solid #000" />
	</a>
</div>
EOJ;
endif;

echo <<<EOJ
<div class="row blue darken-2 topbar">
	<div class="container"><!--
		<div class="col s12 m6 l6 white-text hide-on-small-and-down">Contact: +91-9711224068</div>-->
		<div class="col s12 m12 l12 right-align">
			<a href="{$baseurl}" class="white-text">Home</a>
			{$authlink}
		</div>
	</div>
</div>
<div class="row header">
	<div class="container">
		<div class="col s12 m12 l12">
			<a href="{$baseurl}"><img src="{$imageurl}logo.png" alt="{$websitename}" class="left" /></a>
			<form action="{$baseurl}search" method="get" name="searchform" class="white right" onsubmit="return q.value!='';">
				<input type="text" name="q" placeholder="Search articles" autocomplete="off" class="white" />
				<button type="submit" class="waves-effect btn-flat white"><i class="material-icons">search</i></button>
			</form>
		</div>
	</div>
</div>
<div class="container">
	<div class="row">
		<div class="col s12 m12 l12">
			<nav class="nav-extended blue darken-2 z-depth-0">
				<div class="nav-wrapper">
					<ul id="nav-mobile" class="hide-on-med-and-down">{$fn->nav()}</ul>
					<a href="#" data-target="sidenav" class="sidenav-trigger right"><i class="material-icons left">menu</i>MENU</a>
				</div>
			</nav>
		</div>
	</div>
	<div class="row banner">
		<div class="col s12 m12 l12"><img src="{$imageurl}header.jpg" alt="{$websitename}" /></div>
	</div>
	<div class="row">
		<div class="col s12 m12 l12">
	        <div style="float:left;width:100%;text-align:center;background: linear-gradient(90deg, #1b1a5c, #6e1b89);padding:14px 0;margin:10px 0 15px;color:#fff;font-weight:500;font-size: 18px;">Peer Reviewed Journal</div>
			<div class="holder white">
				<div class="row">
					<div class="col s12 m12 l3 hide-on-med-and-down sidebar">
            		    <a href="https://www.checkplagiarism.ai" target="_blank" style="text-decoration:none;" rel="nofollow sponsored noopener">
                            <div class="redpaper-widget">
                                <div class="headline">Check Plagiarism</div>
            					<img src="https://www.checkplagiarism.ai/static/logo-new.png" alt="Red Paper Logo">
                                <div class="cta">Try Red Paper Now!</div>
                                <button class="check-btn"><span>Check Plagiarism</span></button>
                            </div>
                        </a>
						<a href="{$baseurl}dermatology-magazine-subscriptions" class="body center-align" style="padding-top:10px;"><b>Subscribe Print Journal</b><br clear="all"><img src="{$imageurl}recommend-this-journal.png" alt="Subscribe Print Journal" /></a>
						{$fn->sidebar('L')}
					</div>
					<div class="col s12 m12 l9 content">
						<div class="head phead center-align"><h1>{$h1heading}</h1></div>
EOJ;
?>

Youez - 2016 - github.com/yon3zu
LinuXploit