# usc-e-shop/1.3.6/templates/member/lostpassword.php

Welcart e-Commerce, version 1.3.6. 50 lines.

- Page: https://pluginprobe.com/plugins/usc-e-shop/1.3.6/code/templates/member/lostpassword.php
- Raw: https://pluginprobe.com/plugins/usc-e-shop/1.3.6/raw/templates/member/lostpassword.php
- Modified: 2012-01-26T05:50:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/usc-e-shop/1.3.6/code/templates/member/lostpassword.php#L10-L20`.

```php
<?php
$html = '<div id="memberpages">

<div class="whitebox">';

$html .= '<div class="header_explanation">';
$header = '';
$html .= apply_filters('usces_filter_newpass_page_header', $header);
$html .= '</div>';


if ( usces_is_error_message() ) {
	$html .= '<div class="error_message">' . $this->error_message . '</div>';
}
$html .= '<div class="loginbox">
<form name="loginform" id="loginform" action="' . USCES_MEMBER_URL . '" method="post" onKeyDown="if (event.keyCode == 13) {return false;}">
<p>
<label>' . __('e-mail adress', 'usces') . '<br />
<input type="text" name="loginmail" id="loginmail" class="loginmail" value="" size="20" /></label>
</p>
<p class="submit">
<input type="submit" name="lostpassword" id="member_login" value="' . __('Obtain new password', 'usces') . '" />
</p>
</form>
<div>' . __('Change your password by following the instruction in this mail.', 'usces') . '</div>
<p id="nav">';

if ( ! usces_is_login() ) {
	$html .= '<a href="' . USCES_LOGIN_URL . '" title="' . __('Log-in', 'usces') . '">' . __('Log-in', 'usces') . '</a>';
}
$html .= '</p>

</div>';


$html .= '<div class="footer_explanation">';
$footer = '';
$html .= apply_filters('usces_filter_newpass_page_footer', $footer);
$html .= '</div>';
	

$html .= '</div>

</div>

<script type="text/javascript">
try{document.getElementById(\'loginmail\').focus();}catch(e){}
</script>';
?>

```
