# usc-e-shop/1.3.5/templates/member/changepassword.php

Welcart e-Commerce, version 1.3.5. 41 lines.

- Page: https://pluginprobe.com/plugins/usc-e-shop/1.3.5/code/templates/member/changepassword.php
- Raw: https://pluginprobe.com/plugins/usc-e-shop/1.3.5/raw/templates/member/changepassword.php
- Modified: 2011-12-13T08:55:20+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.5/code/templates/member/changepassword.php#L10-L20`.

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

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


if($this->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>' . __('password', 'usces') . '<br />
		<input type="password" name="loginpass1" id="loginpass1" class="loginpass" value="" size="20" /></label>
	</p>
	<p>
		<label>' . __('Password (confirm)', 'usces') . '<br />
		<input type="password" name="loginpass2" id="loginpass2" class="loginpass" value="" size="20" /></label>
	</p>
	<p class="submit">
		<input type="submit" name="changepassword" id="member_login" value="' . __('Register', 'usces') . '" />
	</p>
</form>
</div>';

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

$html .= '</div>

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

```
