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 / lostpassword.php

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

50 lines 1.3 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 <div class="whitebox">';
5
6 $html .= '<div class="header_explanation">';
7 $header = '';
8 $html .= apply_filters('usces_filter_newpass_page_header', $header);
9 $html .= '</div>';
10
11
12 if ( usces_is_error_message() ) {
13 $html .= '<div class="error_message">' . $this->error_message . '</div>';
14 }
15 $html .= '<div class="loginbox">
16 <form name="loginform" id="loginform" action="' . USCES_MEMBER_URL . '" method="post" onKeyDown="if (event.keyCode == 13) {return false;}">
17 <p>
18 <label>' . __('e-mail adress', 'usces') . '<br />
19 <input type="text" name="loginmail" id="loginmail" class="loginmail" value="" size="20" /></label>
20 </p>
21 <p class="submit">
22 <input type="submit" name="lostpassword" id="member_login" value="' . __('Obtain new password', 'usces') . '" />
23 </p>
24 </form>
25 <div>' . __('Change your password by following the instruction in this mail.', 'usces') . '</div>
26 <p id="nav">';
27
28 if ( ! usces_is_login() ) {
29 $html .= '<a href="' . USCES_LOGIN_URL . '" title="' . __('Log-in', 'usces') . '">' . __('Log-in', 'usces') . '</a>';
30 }
31 $html .= '</p>
32
33 </div>';
34
35
36 $html .= '<div class="footer_explanation">';
37 $footer = '';
38 $html .= apply_filters('usces_filter_newpass_page_footer', $footer);
39 $html .= '</div>';
40
41
42 $html .= '</div>
43
44 </div>
45
46 <script type="text/javascript">
47 try{document.getElementById(\'loginmail\').focus();}catch(e){}
48 </script>';
49 ?>
50