Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/123click/assets/ |
Upload File : |
PK ! ���} } html/pagination.phpnu &1i� <?php
/**
* @package Joomla.Site
* @subpackage Templates.protostar
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
/**
* This is a file to add template specific chrome to pagination rendering.
*
* pagination_list_footer
* Input variable $list is an array with offsets:
* $list[limit] : int
* $list[limitstart] : int
* $list[total] : int
* $list[limitfield] : string
* $list[pagescounter] : string
* $list[pageslinks] : string
*
* pagination_list_render
* Input variable $list is an array with offsets:
* $list[all]
* [data] : string
* [active] : boolean
* $list[start]
* [data] : string
* [active] : boolean
* $list[previous]
* [data] : string
* [active] : boolean
* $list[next]
* [data] : string
* [active] : boolean
* $list[end]
* [data] : string
* [active] : boolean
* $list[pages]
* [{PAGE}][data] : string
* [{PAGE}][active] : boolean
*
* pagination_item_active
* Input variable $item is an object with fields:
* $item->base : integer
* $item->link : string
* $item->text : string
*
* pagination_item_inactive
* Input variable $item is an object with fields:
* $item->base : integer
* $item->link : string
* $item->text : string
*
* This gives template designers ultimate control over how pagination is rendered.
*
* NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both
*/
/**
* Renders the pagination footer
*
* @param array $list Array containing pagination footer
*
* @return string HTML markup for the full pagination footer
*
* @since 3.0
*/
function pagination_list_footer($list)
{
$html = "<div class=\"pagination\">\n";
$html .= $list['pageslinks'];
$html .= "\n<input type=\"hidden\" name=\"" . $list['prefix'] . "limitstart\" value=\"" . $list['limitstart'] . "\" />";
$html .= "\n</div>";
return $html;
}
/**
* Renders the pagination list
*
* @param array $list Array containing pagination information
*
* @return string HTML markup for the full pagination object
*
* @since 3.0
*/
function pagination_list_render($list)
{
// Calculate to display range of pages
$currentPage = 1;
$range = 1;
$step = 5;
foreach ($list['pages'] as $k => $page)
{
if (!$page['active'])
{
$currentPage = $k;
}
}
if ($currentPage >= $step)
{
if ($currentPage % $step == 0)
{
$range = ceil($currentPage / $step) + 1;
}
else
{
$range = ceil($currentPage / $step);
}
}
$html = '<ul class="pagination-list pagination">';
$html .= $list['start']['data'];
$html .= $list['previous']['data'];
foreach ($list['pages'] as $k => $page)
{
if (in_array($k, range($range * $step - ($step + 1), $range * $step)))
{
if (($k % $step == 0 || $k == $range * $step - ($step + 1)) && $k != $currentPage && $k != $range * $step - $step)
{
$page['data'] = preg_replace('#(<a.*?>).*?(</a>)#', '$1...$2', $page['data']);
}
}
$html .= $page['data'];
}
$html .= $list['next']['data'];
$html .= $list['end']['data'];
$html .= '</ul>';
return $html;
}
/**
* Renders an active item in the pagination block
*
* @param JPaginationObject $item The current pagination object
*
* @return string HTML markup for active item
*
* @since 3.0
*/
function pagination_item_active(&$item)
{
$class = '';
// Check for "Start" item
if ($item->text == JText::_('JLIB_HTML_START'))
{
$display = '<i class="fa fa-angle-double-left"></i>';
}
// Check for "Prev" item
if ($item->text == JText::_('JPREV'))
{
$display = '<i class="fa fa-long-arrow-left"></i>' .JText::_('JPREV');
$class = ' class="morepost pull-left"';
}
// Check for "Next" item
if ($item->text == JText::_('JNEXT'))
{
$display = JText::_('JNEXT') .' <i class="fa fa-long-arrow-right"></i>';
$class = ' class="morepost pull-right"';
}
// Check for "End" item
if ($item->text == JText::_('JLIB_HTML_END'))
{
$display = '<i class="fa fa-angle-double-right"></i>';
}
// If the display object isn't set already, just render the item with its text
if (!isset($display))
{
$display = $item->text;
$class = ' class="hidden-phone"';
}
return '<li' . $class . '><a title="' . $item->text . '" href="' . $item->link . '" class="pagenav">' . $display . '</a></li>';
}
/**
* Renders an inactive item in the pagination block
*
* @param JPaginationObject $item The current pagination object
*
* @return string HTML markup for inactive item
*
* @since 3.0
*/
function pagination_item_inactive(&$item)
{
// Check for "Start" item
if ($item->text == JText::_('JLIB_HTML_START'))
{
return '<li class="disabled"><a><i class="icon-first"></i></a></li>';
}
// Check for "Prev" item
if ($item->text == JText::_('JPREV'))
{
return '<li class="disabled morepost pull-left"><a><i class="fa fa-long-arrow-left"></i>' .JText::_('JPREV') .'</a></li>';
}
// Check for "Next" item
if ($item->text == JText::_('JNEXT'))
{
return '<li class="disabled morepost pull-right"><a>' .JText::_('JNEXT') .'<i class="imorepost pull-right"></i></a></li>';
}
// Check for "End" item
if ($item->text == JText::_('JLIB_HTML_END'))
{
return '<li class="disabled"><a><i class="icon-last"></i></a></li>';
}
// Check if the item is the active page
if (isset($item->active) && ($item->active))
{
return '<li class="active hidden-phone"><a>' . $item->text . '</a></li>';
}
// Doesn't match any other condition, render a normal item
return '<li class="disabled hidden-phone"><a>' . $item->text . '</a></li>';
}
PK ! ��h� � * html/com_blue_pagebuilder/page/default.phpnu �[��� <?php
/**
* @package Joomla.Administrator
* @subpackage com_BLUE_PAGEBUILDER
*
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
// check sidebar
$checksidebar = JFactory::getApplication()->getTemplate(true)->params->get('type');
?>
<?php if($this->itemConfig->id!="") echo "<section id='{$this->itemConfig->id}'>"; ?>
<?php if($this->itemConfig->class!="") echo "<div class='{$this->itemConfig->class}'>"; ?>
<?php if($this->itemConfig->fullwidth!="1" && !$checksidebar) echo '<div class="container">'; ?>
<?php echo do_shortcode($this->item->code); ?>
<?php if(!$this->itemConfig->fullwidth && !$checksidebar) echo '</div>'; ?>
<?php if($this->itemConfig->class!="") echo "</div>"; ?>
<?php if($this->itemConfig->id!="") echo "</section>"; ?>
PK ! \9�l� � * html/layouts/com_contact/fields/render.phpnu �[��� <?php
/**
* @package Joomla.Site
* @subpackage com_contact
*
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
// Check if we have all the data
if (!key_exists('item', $displayData) || !key_exists('context', $displayData))
{
return;
}
// Setting up for display
$item = $displayData['item'];
if (!$item)
{
return;
}
$context = $displayData['context'];
if (!$context)
{
return;
}
JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR . '/components/com_fields/helpers/fields.php');
$parts = explode('.', $context);
$component = $parts[0];
$fields = null;
if (key_exists('fields', $displayData))
{
$fields = $displayData['fields'];
}
else
{
$fields = $item->jcfields ?: FieldsHelper::getFields($context, $item, true);
}
if (!$fields)
{
return;
}
// Check if we have mail context in first element
$isMail = (reset($fields)->context == 'com_contact.mail');
if (!$isMail)
{
// Print the container tag
echo '<dl class="fields-container contact-fields dl-horizontal">';
}
// Loop through the fields and print them
foreach ($fields as $field)
{
// If the value is empty do nothing
if (!strlen($field->value) && !$isMail)
{
continue;
}
$layout = $field->params->get('layout', 'render');
echo FieldsHelper::render($context, 'field.' . $layout, array('field' => $field));
}
if (!$isMail)
{
// Close the container
echo '</dl>';
}
PK ! �T+~ ~ html/mod_breadcrumbs/default.phpnu &1i� <?php
/**
* @package Joomla.Site
* @subpackage mod_breadcrumbs
*
* @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
JHtml::_('bootstrap.tooltip');
?>
<?php
// Get rid of duplicated entries on trail including home page when using multilanguage
for ($i = 0; $i < $count; $i++)
{
if ($i == 1 && !empty($list[$i]->link) && !empty($list[$i - 1]->link) && $list[$i]->link == $list[$i - 1]->link)
{
unset($list[$i]);
}
}
// Find last and penultimate items in breadcrumbs list
end($list);
$last_item_key = key($list);
prev($list);
$penult_item_key = key($list);
// Make a link if not the last item in the breadcrumbs
$show_last = $params->get('showLast', 1);
// Generate the trail
foreach ($list as $key => $item) :
if ($key != $last_item_key) :
// Render all but last item - along with separator ?>
<?php if (!empty($item->link)) : ?>
<a href="<?php echo $item->link; ?>"><i class="fa fa-circle"></i><?php echo $item->name; ?></a>
<?php else : ?>
<a href="#."><i class="fa fa-circle"></i><?php echo $item->name; ?></a>
<?php endif; ?>
<?php elseif ($show_last) :
// Render last item if reqd. ?>
<span><i class="fa fa-angle-right"></i><?php echo $item->name; ?></span>
<?php endif;
endforeach; ?>PK ! ߄�B html/index.htmlnu &1i� <!DOCTYPE html><title></title>
PK ! ��<V� � html/mod_k2_tools/categories.phpnu &1i� <?php
/**
* @version 2.7.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CategoriesListBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
<?php echo $output; ?>
</div>
PK ! �� html/mod_k2_tools/authors.phpnu &1i� <?php
/**
* @version 2.7.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2AuthorsListBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
<ul>
<?php foreach ($authors as $author): ?>
<li>
<?php if ($params->get('authorAvatar')): ?>
<a class="k2Avatar abAuthorAvatar" rel="author" href="<?php echo $author->link; ?>" title="<?php echo K2HelperUtilities::cleanHtml($author->name); ?>">
<img src="<?php echo $author->avatar; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($author->name); ?>" style="width:<?php echo $avatarWidth; ?>px;height:auto;" />
</a>
<?php endif; ?>
<a class="abAuthorName" rel="author" href="<?php echo $author->link; ?>">
<?php echo $author->name; ?>
<?php if ($params->get('authorItemsCounter')): ?>
<span>(<?php echo $author->items; ?>)</span>
<?php endif; ?>
</a>
<?php if ($params->get('authorLatestItem')): ?>
<a class="abAuthorLatestItem" href="<?php echo $author->latest->link; ?>" title="<?php echo K2HelperUtilities::cleanHtml($author->latest->title); ?>">
<?php echo $author->latest->title; ?>
<span class="abAuthorCommentsCount">
(<?php echo $author->latest->numOfComments; ?> <?php if($author->latest->numOfComments=='1') echo JText::_('K2_MODK2TOOLS_COMMENT'); else echo JText::_('K2_MODK2TOOLS_COMMENTS'); ?>)
</span>
</a>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
</div>
PK ! �Q�S html/mod_k2_tools/calendar.phpnu &1i� <?php
/**
* @version 2.7.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CalendarBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
<?php echo $calendar; ?>
<div class="clr"></div>
</div>
PK ! �L��} } html/mod_k2_tools/search.phpnu &1i� <?php
/**
* @version 2.7.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
/*
Important note:
If you wish to use the live search option, it's important that you maintain the same class names for wrapping elements, e.g. the wrapping div and form.
*/
?>
<div id="search" class="k2SearchBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); if($params->get('liveSearch')) echo ' k2LiveSearchBlock'; ?>">
<button type="button" class="close">×</button>
<form action="<?php echo $action; ?>" method="get" autocomplete="off" class="k2SearchBlockForm">
<input type="text" value="<?php echo $text; ?>" name="searchword" maxlength="500" size="<?php echo $width; ?>" alt="<?php echo $button_text; ?>" class="inputbox" onblur="if(this.value=='') this.value='<?php echo $text; ?>';" onfocus="if(this.value=='<?php echo $text; ?>') this.value='';" />
<?php if($button): ?>
<?php if($imagebutton): ?>
<input type="image" value="<?php echo $button_text; ?>" class="button" onclick="this.form.searchword.focus();" src="<?php echo JURI::base(true); ?>/components/com_k2/images/fugue/search.png" />
<?php else: ?>
<button type="submit" class="btn btn-primary"><?php echo $button_text; ?></button>
<?php endif; ?>
<?php endif; ?>
<?php if($categoryFilter): ?>
<input type="hidden" name="categories" value="<?php echo $categoryFilter; ?>" />
<?php endif; ?>
<?php if(!$app->getCfg('sef')): ?>
<input type="hidden" name="option" value="com_k2" />
<input type="hidden" name="view" value="itemlist" />
<input type="hidden" name="task" value="search" />
<?php endif; ?>
<?php if($params->get('liveSearch')): ?>
<input type="hidden" name="format" value="html" />
<input type="hidden" name="t" value="" />
<input type="hidden" name="tpl" value="search" />
<?php endif; ?>
</form>
<?php if($params->get('liveSearch')): ?>
<div class="k2LiveSearchResults"></div>
<?php endif; ?>
</div>
PK ! ��U%� � ! html/mod_k2_tools/breadcrumbs.phpnu &1i� <?php
/**
* @version 2.7.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2BreadcrumbsBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
<?php
$output = '';
if ($params->get('home')) {
$output .= '<span class="bcTitle">'.JText::_('K2_YOU_ARE_HERE').'</span>';
$output .= '<a href="'.JURI::root().'">'.$params->get('home',JText::_('K2_HOME')).'</a>';
if (count($path)) {
foreach ($path as $link) {
$output .= '<span class="bcSeparator">'.$params->get('seperator','»').'</span>'.$link;
}
}
if($title){
$output .= '<span class="bcSeparator">'.$params->get('seperator','»').'</span>'.$title;
}
} else {
if($title){
$output .= '<span class="bcTitle">'.JText::_('K2_YOU_ARE_HERE').'</span>';
}
if (count($path)) {
foreach ($path as $link) {
$output .= $link.'<span class="bcSeparator">'.$params->get('seperator','»').'</span>';
}
}
$output .= $title;
}
echo $output;
?>
</div>
PK ! �J;rY Y html/mod_k2_tools/tags.phpnu &1i� <?php
/**
* @version 2.7.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="tag-cloud <?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
<ul>
<?php foreach ($tags as $tag): ?>
<?php if(!empty($tag->tag)): ?>
<li><a href="<?php echo $tag->link; ?>" style="font-size:<?php echo $tag->size; ?>%" title="<?php echo $tag->count.' '.JText::_('K2_ITEMS_TAGGED_WITH').' '.K2HelperUtilities::cleanHtml($tag->tag); ?>">
<?php echo $tag->tag; ?>
</a></li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
<div class="clr"></div>
</div>
PK ! �'N html/mod_k2_tools/archive.phpnu &1i� <?php
/**
* @version 2.7.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2ArchivesBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
<ul>
<?php foreach ($months as $month): ?>
<li>
<a href="<?php echo $month->link; ?>">
<?php echo $month->name.' '.$month->y; ?>
<?php if ($params->get('archiveItemsCounter')) echo '('.$month->numOfItems.')'; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
PK ! �� � html/mod_k2_tools/customcode.phpnu &1i� <?php
/**
* @version 2.7.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CustomCodeBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
<?php echo $customcode; ?>
</div>
PK ! e���: : html/st_template/contact.phpnu &1i� <?php
defined('_JEXEC') or die;
$doc = JFactory::getDocument();
$doc->addScript(JURI::root(true).'/plugins/system/bluetheme/assets/js/form-validation.js');
$app = JFactory::getApplication('site');
$componentParams = $app->getParams('com_blue_pagebuilder');
$style = $componentParams->get('style','1');
$params = $app->getTemplate(true)->params;
if($params->get('stateggcaptcha') == '1' && $params->get('captchasecret') && $params->get('captchasitekey')){
$captcha = true;
}
else
$captcha = false;
if(strtoupper(trim($sid)) == 'EN' || $sid == '1' || empty($sid)){
$prefix_lang = '';
} else {
$prefix_lang = '_' .strtoupper(trim($sid));
}
?>
<div class="leigie-contact <?php echo $title; ?>">
<div class="contact-form-wrapper">
<form name="myform" id="contact-form" class="form-inline contact-margin" action="index.php?option=com_blue_pagebuilder&task=page.contact&tmpl=component" enctype="multipart/form-data" method="post">
<div class="notifications clearfix bt-clearfix">
<div class="alert alert-error error text-center theme_btn color1 inverse support_widget clearfix" id="fname">
<p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_NAME_MUST_NOT_BE_EMPTY_TEXT' .$prefix_lang);?></p>
</div>
<div class="alert alert-error error text-center theme_btn color1 inverse support_widget clearfix" id="fmail">
<p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_EMAIL_TEXT' .$prefix_lang);?></p>
</div>
<div class="alert alert-error error text-center theme_btn color1 inverse support_widget clearfix" id="fsubject">
<p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_SUBJECT_TEXT' .$prefix_lang);?></p>
</div>
<div class="alert alert-error error text-center theme_btn color1 inverse support_widget clearfix" id="fmsg">
<p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_MESSAGE_SHOULD_NOT_BE_EMPTY_TEXT' .$prefix_lang);?></p>
</div>
<div class="alert alert-error error text-center theme_btn color1 inverse support_widget clearfix" id="frecaptcha">
<p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_CAPTCHA_NOT_VALIDATED' .$prefix_lang);?></p>
</div>
<div class="contact-success-message alert alert-success success text-center theme_btn inverse color3"></div>
</div>
<!--Name and Email Field Box-->
<div class="row">
<div class="col-md-6 col-sm-12 col-xs-12 form-group">
<input id="name" class="form-control" type="text" name="name" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_YOUR_NAME_TEXT' .$prefix_lang);?>"/>
</div>
<div class="col-md-6 col-sm-12 col-xs-12 form-group">
<input id="email" class="form-control" type="text" name="email" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_VALID_EMAIL_ID_TEXT' .$prefix_lang);?>"/>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-12">
<textarea id="message" class="form-control" name="message" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_YOUR_MESSAGE_TEXT' .$prefix_lang);?>" ></textarea>
</div>
</div>
<?php if($captcha): ?>
<div class="row">
<div class="col-xs-12 col-md-12">
<script src='https://www.google.com/recaptcha/api.js'></script>
<div class="g-recaptcha" data-sitekey="<?php echo $params->get('captchasitekey'); ?>"></div>
</div>
</div>
<?php endif; ?>
<div class="row">
<div class="col-xs-12 col-md-12">
<button id="submit_btn" class="btn-black btn-blue bounce-green" type="submit"> <?php echo JText::_('COM_BLUE_PAGEBUILDER_BTN_SUBMIT' .$prefix_lang); ?> </button>
</div>
</div>
<input type="hidden" class="thank" name="thanks" value="<?php echo (!empty($thanks)? $thanks : ''); ?>" />
<input type="hidden" class="emailauthor" name="emailauthor" value="<?php echo (!empty($email)? $email : ''); ?>" />
<input type="hidden" class="subject" name="subject" value="<?php echo (!empty($subject)? $subject : ''); ?>" />
</form>
</div>
</div>PK ! r �� � "