-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-forgot_password.php
39 lines (37 loc) · 1.94 KB
/
user-forgot_password.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php osc_current_web_theme_path( 'head.php' ); ?>
<body>
<?php osc_current_web_theme_path( 'header.php' ); ?>
<div class="col-md-12">
<div class="container panel panel-body panel-success">
<?php UserForm::js_validation(); ?>
<div class="content tfc-form user_forms">
<div class="inner">
<div class="panel-heading lead">
<?php _e( 'Recover your password' , 'shopclass' ); ?>
</div>
<form class="tfc-form" action="<?php echo osc_base_url( true ); ?>" method="post">
<input type="hidden" name="page" value="login"/>
<input type="hidden" name="action" value="forgot_post"/>
<input type="hidden" name="userId" value="<?php echo Params::getParam( 'userId' ); ?>"/>
<input type="hidden" name="code" value="<?php echo Params::getParam( 'code' ); ?>"/>
<fieldset>
<p>
<label for="new_email"><?php _e( 'New pasword' , 'shopclass' ); ?></label><br/>
<input type="password" name="new_password" value=""
placeholder="<?php echo osc_esc_html( __( 'Enter Your Password' , 'shopclass' ) ); ?>"/>
</p>
<p>
<label for="new_email"><?php _e( 'Repeat new pasword' , 'shopclass' ); ?></label><br/>
<input type="password" name="new_password2" value=""
placeholder="<?php echo osc_esc_html( __( 'Retype Your Password' , 'shopclass' ) ); ?>"/>
</p>
<button type="submit"><?php _e( 'Change password' , 'shopclass' ); ?></button>
</fieldset>
</form>
</div>
</div>
</div>
</div>
<?php osc_current_web_theme_path( 'footer.php' ); ?>
</body>
</html>