PluginProbe
Welcart e-Commerce / 1.3.7
Welcart e-Commerce v1.3.7
2.12.4 2.12.3 2.11.35 2.12.2 2.12.1 2.11.34 2.11.33 2.11.32 2.11.31 2.11.30 1.3.16 1.3.17 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 All 292 releases
usc-e-shop / templates / member / changepassword.php

changepassword.php in Welcart e-Commerce 1.3.7, at templates/member/changepassword.php

41 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 $html = '<div id="memberpages">';
3
4 $html .= '<div class="header_explanation">';
5 $header = '';
6 $html .= apply_filters('usces_filter_changepass_page_header', $header);
7 $html .= '</div>';
8
9
10 if($this->error_message != '') {
11 $html .= '<div class="error_message">' . $this->error_message . '</div>';
12 }
13 $html .= '<div class="loginbox">
14 <form name="loginform" id="loginform" action="' . USCES_MEMBER_URL . '" method="post" onKeyDown="if (event.keyCode == 13) {return false;}">
15 <p>
16 <label>' . __('password', 'usces') . '<br />
17 <input type="password" name="loginpass1" id="loginpass1" class="loginpass" value="" size="20" /></label>
18 </p>
19 <p>
20 <label>' . __('Password (confirm)', 'usces') . '<br />
21 <input type="password" name="loginpass2" id="loginpass2" class="loginpass" value="" size="20" /></label>
22 </p>
23 <p class="submit">
24 <input type="submit" name="changepassword" id="member_login" value="' . __('Register', 'usces') . '" />
25 </p>
26 </form>
27 </div>';
28
29 $html .= '<div class="footer_explanation">';
30 $footer = '';
31 $html .= apply_filters('usces_filter_changepass_page_footer', $footer);
32 $html .= '</div>';
33
34
35 $html .= '</div>
36
37 <script type="text/javascript">
38 try{document.getElementById(\'loginpass1\').focus();}catch(e){}
39 </script>';
40 ?>
41