-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile-form.php
271 lines (236 loc) · 11.3 KB
/
profile-form.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?php
/*
If you would like to edit this file, copy it to your current theme's directory and edit it there.
Theme My Login will always look in your theme's directory first, before using this default template.
*/
?>
<style>
.entry-title{display:none;}
.page-header--navigation--tab{
margin-right:5px;
}
.container{
padding: 0;
}
button{
display: inline-block;
color: white;
font-weight: bold;
border: 0;
padding: 6px;
border-radius: 4px;
font-size: 15px;
}
.ph-tab-container{
background: white;
}
</style>
<?php if(wp_is_mobile()){ ?>
<div class='user-avatar'>
<?php
$ID = get_current_user_id();
$author = get_user_by( 'id', $ID );
$email = $author->user_email;
$site = $author->user_url;
$size = 100;
echo get_avatar( $ID , $size);
?>
</div>
<header class="page-header full-width-div ph-profile">
<div class="container ph-profile-pushdown"">
<nav class="page-header--navigation" style='width:100%;'>
<ul>
<li class="page-header--navigation--tab m-active" id = 'ah-main'><a href="#"><?php _e('Your Details','pluginhunt');?></a></li>
<li class="page-header--navigation--tab" id = 'ah-details'><a href="#"><?php _e('About you','pluginhunt');?></a></li>
<li class="page-header--navigation--tab" id = 'ah-account'><a href="#"><?php _e('Your Account','pluginhunt');?></a></li>
<li class="page-header--navigation--tab" id = 'ah-profile'><a href="#"><?php _e('Photo and Tagline','pluginhunt');?></a></li>
</ul>
</nav>
</div>
</header>
<?php }else{ ?>
<header class="page-header full-width-div ph-profile">
<div class="container ph-profile-pushdown" style="height: 150px;margin-top: -70px;">
<nav class="page-header--navigation" style='width:95%;margin-top: 84px;'>
<ul>
<li class="page-header--navigation--tab m-active" id = 'ah-main'><a href="#"> <?php _e('Your Details','pluginhunt');?></a></li>
<li class="page-header--navigation--tab" id = 'ah-details'><a href="#"> <?php _e('About you','pluginhunt');?></a></li>
<li class="page-header--navigation--tab" id = 'ah-account'><a href="#"><?php _e('Your Account','pluginhunt');?></a></li>
<li class="page-header--navigation--tab" id = 'ah-profile'><a href="#"> <?php _e('Photo and Tagline','pluginhunt');?></a></li>
</ul>
</nav>
</div>
</header>
<?php } ?>
<div class='container ph-tab-container' style='max-width:900px;'>
<div class="tml tml-profile" id="theme-my-login<?php $template->the_instance(); ?>">
<?php $template->the_action_template_message( 'profile' ); ?>
<?php $template->the_errors(); ?>
<form id="your-profile" action="<?php $template->the_action_url( 'profile', 'login_post' ); ?>" method="post">
<?php wp_nonce_field( 'update-user_' . $current_user->ID ); ?>
<p>
<input type="hidden" name="from" value="profile" />
<input type="hidden" name="checkuser_id" value="<?php echo $current_user->ID; ?>" />
</p>
<table class="tml-form-table">
<tr class="tml-user-admin-bar-front-wrap">
<th><label for="admin_bar_front"><?php _e( 'Toolbar', 'theme-my-login' )?></label></th>
<td>
<label for="admin_bar_front"><input type="checkbox" name="admin_bar_front" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profileuser->ID ) ); ?> />
<?php _e( 'Show Toolbar when viewing site', 'theme-my-login' ); ?></label>
</td>
</tr>
<?php do_action( 'personal_options', $profileuser ); ?>
</table>
<?php do_action( 'profile_personal_options', $profileuser ); ?>
<div class='ph-tabbed active' id ='ah-main-tab'>
<table class="tml-form-table">
<tr class="tml-user-login-wrap">
<th><label for="user_login"><?php _e( 'Username', 'theme-my-login' ); ?></label></th>
<td><input type="text" name="user_login" id="user_login" value="<?php echo esc_attr( $profileuser->user_login ); ?>" disabled="disabled" class="regular-text" /> <span class="description"><?php _e( 'Usernames cannot be changed.', 'theme-my-login' ); ?></span></td>
</tr>
<tr class="tml-first-name-wrap">
<th><label for="first_name"><?php _e( 'First Name', 'theme-my-login' ); ?></label></th>
<td><input type="text" name="first_name" id="first_name" value="<?php echo esc_attr( $profileuser->first_name ); ?>" class="regular-text" /></td>
</tr>
<tr class="tml-last-name-wrap">
<th><label for="last_name"><?php _e( 'Last Name', 'theme-my-login' ); ?></label></th>
<td><input type="text" name="last_name" id="last_name" value="<?php echo esc_attr( $profileuser->last_name ); ?>" class="regular-text" /></td>
</tr>
<tr class="tml-nickname-wrap">
<th><label for="nickname"><?php _e( 'Nickname', 'theme-my-login' ); ?> <span class="description"><?php _e( '(required)', 'theme-my-login' ); ?></span></label></th>
<td><input type="text" name="nickname" id="nickname" value="<?php echo esc_attr( $profileuser->nickname ); ?>" class="regular-text" /></td>
</tr>
<tr class="tml-display-name-wrap">
<th><label for="display_name"><?php _e( 'Display name publicly as', 'theme-my-login' ); ?></label></th>
<td>
<select name="display_name" id="display_name">
<?php
$public_display = array();
$public_display['display_nickname'] = $profileuser->nickname;
$public_display['display_username'] = $profileuser->user_login;
if ( ! empty( $profileuser->first_name ) )
$public_display['display_firstname'] = $profileuser->first_name;
if ( ! empty( $profileuser->last_name ) )
$public_display['display_lastname'] = $profileuser->last_name;
if ( ! empty( $profileuser->first_name ) && ! empty( $profileuser->last_name ) ) {
$public_display['display_firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name;
$public_display['display_lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name;
}
if ( ! in_array( $profileuser->display_name, $public_display ) )// Only add this if it isn't duplicated elsewhere
$public_display = array( 'display_displayname' => $profileuser->display_name ) + $public_display;
$public_display = array_map( 'trim', $public_display );
$public_display = array_unique( $public_display );
foreach ( $public_display as $id => $item ) {
?>
<option <?php selected( $profileuser->display_name, $item ); ?>><?php echo $item; ?></option>
<?php
}
?>
</select>
</td>
</tr>
</table>
</div>
<div class='ph-tabbed' id ='ah-details-tab'>
<table class="tml-form-table">
<tr class="tml-user-email-wrap">
<th><label for="email"><?php _e( 'E-mail', 'theme-my-login' ); ?> <span class="description"><?php _e( '(required)', 'theme-my-login' ); ?></span></label></th>
<td><input type="text" name="email" id="email" value="<?php echo esc_attr( $profileuser->user_email ); ?>" class="regular-text" /></td>
<?php
$new_email = get_option( $current_user->ID . '_new_email' );
if ( $new_email && $new_email['newemail'] != $current_user->user_email ) : ?>
<div class="updated inline">
<p><?php
printf(
__( 'There is a pending change of your e-mail to %1$s. <a href="%2$s">Cancel</a>', 'theme-my-login' ),
'<code>' . $new_email['newemail'] . '</code>',
esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) )
); ?></p>
</div>
<?php endif; ?>
</tr>
<tr class="tml-user-url-wrap">
<th><label for="url"><?php _e( 'Website', 'theme-my-login' ); ?></label></th>
<td><input type="text" name="url" id="url" value="<?php echo esc_attr( $profileuser->user_url ); ?>" class="regular-text code" /></td>
</tr>
<?php
foreach ( wp_get_user_contact_methods() as $name => $desc ) {
?>
<tr class="tml-user-contact-method-<?php echo $name; ?>-wrap">
<th><label for="<?php echo $name; ?>"><?php echo apply_filters( 'user_'.$name.'_label', $desc ); ?></label></th>
<td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr( $profileuser->$name ); ?>" class="regular-text" /></td>
</tr>
<?php
}
?>
</table>
<h3><?php _e( 'About Yourself', 'pluginhunt' ); ?></h3>
<table class="tml-form-table">
<tr class="tml-user-description-wrap">
<th><label for="description"><?php _e( 'Biographical Info', 'theme-my-login' ); ?></label></th>
<td><textarea name="description" id="description" rows="5" cols="30"><?php echo esc_html( $profileuser->description ); ?></textarea><br />
<span class="description"><?php _e( 'Share a little biographical information to fill out your profile. This is shown on your profile.', 'pluginhunt' ); ?></span></td>
</tr>
<?php
$show_password_fields = apply_filters( 'show_password_fields', true, $profileuser );
if ( $show_password_fields ) :
?>
</table>
</div>
<div class='ph-tabbed' id ='ah-account-tab'>
<h3><?php _e( 'Account Management', 'theme-my-login' ); ?></h3>
<table class="tml-form-table">
<tr id="password" class="user-pass1-wrap">
<th><label for="pass1"><?php _e( 'New Password', 'theme-my-login' ); ?></label></th>
<td>
<input class="hidden" value=" " /><!-- #24364 workaround -->
<button type="button" class="button-primary wp-generate-pw hide-if-no-js"><?php _e( 'Generate Password', 'theme-my-login' ); ?></button>
<div class="wp-pwd hide-if-js">
<span class="password-input-wrapper">
<input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" />
</span>
<div style="display:none" id="pass-strength-result" aria-live="polite"></div>
<button type="button" class="button-primary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password', 'theme-my-login' ); ?>">
<span class="dashicons dashicons-hidden"></span>
<span class="text"><?php _e( 'Hide', 'theme-my-login' ); ?></span>
</button>
<button type="button" class="button-primary wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change', 'theme-my-login' ); ?>">
<span class="text"><?php _e( 'Cancel', 'theme-my-login' ); ?></span>
</button>
</div>
</td>
</tr>
<tr class="user-pass2-wrap hide-if-js">
<th scope="row"><label for="pass2"><?php _e( 'Repeat New Password', 'theme-my-login' ); ?></label></th>
<td>
<input name="pass2" type="password" id="pass2" class="regular-text" value="" autocomplete="off" />
<p class="description"><?php _e( 'Type your new password again.', 'theme-my-login' ); ?></p>
</td>
</tr>
<tr class="pw-weak">
<th><?php _e( 'Confirm Password', 'theme-my-login' ); ?></th>
<td>
<label>
<input type="checkbox" name="pw_weak" class="pw-checkbox" />
<?php _e( 'Confirm use of weak password', 'theme-my-login' ); ?>
</label>
</td>
</tr>
<?php endif; ?>
</table>
</div>
<div class='ph-tabbed' id ='ah-profile-tab'>
<?php do_action( 'show_user_profile', $profileuser ); ?>
</div>
<br/>
<hr>
<p class="tml-submit-wrap">
<input type="hidden" name="action" value="profile" />
<input type="hidden" name="instance" value="<?php $template->the_instance(); ?>" />
<input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr( $current_user->ID ); ?>" />
<input type="submit" class="button-primary" value="<?php esc_attr_e( 'Update Profile', 'theme-my-login' ); ?>" name="submit" id="submit" />
</p>
</form>
</div>
</div>