Pre-Populate The Password Field After Registering
-
- Reason
My users are signing up on a mobile device and can not copy paste the generated password from their email.
- What Is Needed
When you successfully register a new user, it redirects to register.php and the Username is already pre-populated with the following code:
<input name="user_login" type="text" id="user_login" size="18" maxlength="40" value="<?php if (!is_bool($user_login)) echo $user_login; ?>" tabindex="1" />
How can we do the exact same thing with the password field?
I have already tried using $pass, $password and $user_pass none of which are available to register.php
Thanks!!!
- You must be logged in to reply to this topic.