-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-change_password.php
More file actions
52 lines (50 loc) · 2.71 KB
/
user-change_password.php
File metadata and controls
52 lines (50 loc) · 2.71 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php osc_current_web_theme_path( 'head.php' ); ?>
<body>
<?php osc_current_web_theme_path( 'header.php' ); ?>
<div class="row">
<div class="col-md-4">
<?php include 'user-sidebar.php'; ?>
</div>
<div class="col-md-8">
<div class="tfc-item">
<div class="panel-heading">
<div class="panel-title"><?php _e( 'Change your password' , 'shopclass' ); ?></div>
</div>
<div class="content user_account panel-body">
<div id="main" class="modify_profile">
<legend><?php _e( 'Change your password' , 'shopclass' ); ?></legend>
<form class="tfc-form form-group" action="<?php echo osc_base_url( true ); ?>" method="post">
<input type="hidden" name="page" value="user"/>
<input type="hidden" name="action" value="change_password_post"/>
<fieldset>
<p>
<label for="password"><?php _e( 'Current password' , 'shopclass' ); ?> *</label>
<input class="form-control"
placeholder="<?php echo osc_esc_html( __( 'Enter Current Password' , 'shopclass' ) ); ?>"
type="password" name="password" id="password" value=""/>
</p>
<p>
<label for="new_password"><?php _e( 'New password' , 'shopclass' ); ?> *</label>
<input class="form-control"
placeholder="<?php echo osc_esc_html( __( 'Enter New Password' , 'shopclass' ) ); ?>"
type="password" name="new_password" id="new_password" value=""/>
</p>
<p>
<label for="new_password2"><?php _e( 'Repeat new password' , 'shopclass' ); ?> *</label>
<input class="form-control"
placeholder="<?php echo osc_esc_html( __( 'Retype New Password' , 'shopclass' ) ); ?>"
type="password" name="new_password2" id="new_password2" value=""/>
</p>
<div style="clear:both;"></div>
<button class="btn btn-default"
type="submit"><?php _e( 'Update' , 'shopclass' ); ?></button>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
<?php osc_current_web_theme_path( 'footer.php' ); ?>
</body>
</html>