-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-change_password.php
50 lines (49 loc) · 2.19 KB
/
user-change_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
40
41
42
43
44
45
46
47
48
49
50
<?php
// meta tag robots
osc_add_hook('header','market_nofollow_construct');
market_add_body_class('user user-profile');
osc_add_hook('before-main','sidebar');
function sidebar(){
osc_current_web_theme_path('user-sidebar.php');
}
osc_add_filter('meta_title_filter','custom_meta_title');
function custom_meta_title($data){
return __('Change password', 'market');;
}
osc_current_web_theme_path('header.php') ;
$osc_user = osc_user();
?>
<h1><?php _e('Change password', 'market'); ?></h1>
<div class="form-container form-horizontal">
<div class="resp-wrapper">
<ul id="error_list"></ul>
<form 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" />
<div class="control-group">
<label class="control-label" for="password"><?php _e('Current password', 'market'); ?> *</label>
<div class="controls">
<input type="password" name="password" id="password" value="" autocomplete="off" />
</div>
</div>
<div class="control-group">
<label class="control-label" for="new_password"><?php _e('New password', 'market'); ?> *</label>
<div class="controls">
<input type="password" name="new_password" id="new_password" value="" autocomplete="off" />
</div>
</div>
<div class="control-group">
<label class="control-label" for="new_password2"><?php _e('Repeat new password', 'market'); ?> *</label>
<div class="controls">
<input type="password" name="new_password2" id="new_password2" value="" autocomplete="off" />
</div>
</div>
<div class="control-group">
<div class="controls">
<button type="submit" class="ui-button ui-button-middle ui-button-main"><?php _e("Update", 'market');?></button>
</div>
</div>
</form>
</div>
</div>
<?php osc_current_web_theme_path('footer.php') ; ?>