Файл: adultscript-2.0.3-pro/files/mobile/templates/default/user_account.tpl.php
Строк: 37
<?php defined('_VALID') or die('Restricted Access!'); ?>
<div data-role="content">
<?php echo $this->fetch('user_menu'); ?>
<div class="ui-corner-all custom-corners">
<div class="ui-bar ui-bar-b">
<h3><?php echo __('edit-account'); ?></h3>
</div>
<div class="ui-body ui-body-b">
<p>
<form method="post" action="<?php echo MOBILE_REL; ?>/user/account/">
<div data-role="fieldcontain">
<label for="username"><?php echo __('username'); ?>: </label>
<input name="username" type="text" id="username" value="<?php echo e($_SESSION['username']); ?>" />
</div>
<div data-role="fieldcontain">
<label for="email"><?php echo __('email'); ?>: </label>
<input name="email" type="text" id="email" value="<?php echo e($_SESSION['email']); ?>" />
</div>
<div data-role="fieldcontain">
<label for="password"><?php echo __('password-new'); ?>: </label>
<input name="password" type="password" id="password" value="" />
</div>
<div data-role="fieldcontain">
<label for="passwordr"><?php echo __('password-retype'); ?>: </label>
<input name="passwordr" type="password" id="passwordr" value="" />
</div>
<button type="submit" data-theme="b" name="submit-account"><?php echo __('edit-account'); ?></button>
</form>
</p>
</div>
</div>
</div>