Файл: adultscript-2.0.3-pro/files/mobile/templates/default/share_photo.tpl.php
Строк: 23
<?php defined('_VALID') or die('Restricted Access!'); ?>
<div data-role="content">
<center>
<h5><?php echo e($this->photo['title']); ?></h5>
<img src="<?php echo PHOTO_URL,'/thumbs/',$this->photo['photo_id'],'.jpg'; ?>" alt="<?php echo e($this->photo['title']); ?>" />
</center>
<form method="post" action="<?php echo MOBILE_REL,'/share/photo/?id=',$this->photo['photo_id']; ?>">
<div data-role="fieldcontain">
<label for="to"><?php echo __('to'); ?>:</label>
<input type="text" name="to" id="to" value="<?php echo e($this->share['to']); ?>" />
</div>
<div data-role="fieldcontain">
<label for="from"><?php echo __('from'); ?>:</label>
<input type="text" name="from" id="from" value="<?php echo e($this->share['from']); ?>" />
</div>
<div data-role="fieldcontain">
<label for="message"><?php echo __('message'); ?>:</label>
<textarea cols="40" rows="12" name="message" id="message"><?php echo e($this->share['message']); ?></textarea>
</div>
<center><button type="submit" data-theme="b"><?php echo __('send'); ?></button></center>
</form>
</div>