Файл: oc-includes/osclass/gui/item-contact.php
Строк: 107
<?php
/*
* Copyright 2014 Osclass
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
osc_enqueue_script('jquery-validate');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="<?php echo str_replace('_', '-', osc_current_user_locale()); ?>">
<head>
<?php osc_current_web_theme_path('head.php'); ?>
<meta name="robots" content="noindex, nofollow" />
<meta name="googlebot" content="noindex, nofollow" />
</head>
<body>
<?php osc_current_web_theme_path('header.php'); ?>
<div class="content user_forms">
<div id="contact" class="inner">
<h1><?php _e('Contact seller', 'modern'); ?></h1>
<ul id="error_list"></ul>
<?php ContactForm::js_validation(); ?>
<form action="<?php echo osc_base_url(true); ?>" method="post" name="contact_form" id="contact_form">
<fieldset>
<?php ContactForm::primary_input_hidden(); ?>
<?php ContactForm::action_hidden(); ?>
<?php ContactForm::page_hidden(); ?>
<label><?php _e('To (seller)', 'modern'); ?>: <?php echo osc_item_contact_name();?></label><br />
<label><?php _e('Listing', 'modern'); ?>: <a href="<?php echo osc_item_url(); ?>"><?php echo osc_item_title(); ?></a></label><br />
<?php if(osc_is_web_user_logged_in()) { ?>
<input type="hidden" name="yourName" value="<?php echo osc_esc_html( osc_logged_user_name() ); ?>" />
<input type="hidden" name="yourEmail" value="<?php echo osc_logged_user_email();?>" />
<?php } else { ?>
<label for="yourName"><?php _e('Your name', 'modern'); ?></label> <?php ContactForm::your_name(); ?><br />
<label for="yourEmail"><?php _e('Your e-mail address', 'modern'); ?></label> <?php ContactForm::your_email(); ?><br />
<?php }; ?>
<label for="phoneNumber"><?php _e('Phone number', 'modern'); ?> (<?php _e('optional', 'modern'); ?>)</label> <?php ContactForm::your_phone_number(); ?><br />
<label for="message"><?php _e('Message', 'modern'); ?></label> <?php ContactForm::your_message(); ?><br />
<?php osc_show_recaptcha(); ?>
<button type="submit"><?php _e('Send message', 'modern'); ?></button>
</fieldset>
</form>
</div>
</div>
<?php osc_current_web_theme_path('footer.php'); ?>
</body>
</html>