dropdown menu (AGE) for buddypress sign up login
-
Hi guys,
So thhis is the a portion of the code right now for the sign up pop-up on my site. Its for the username, email, password and email.
<div class="six columns"> <input type="text" id="reg-username" name="signup_username" class="inputbox" required placeholder="<?php _e("Username", 'kleo_framework');?>"> </div> <div class="twelve columns"> <input type="text" id="reg-email" name="signup_email" class="inputbox" required placeholder="<?php _e("Your email", 'kleo_framework');?>"> </div> <div class="six columns"> <input type="password" id="reg-password" name="signup_password" class="inputbox" required placeholder="<?php _e("Desired password", 'kleo_framework');?>"> </div> <div class="six columns"> <input type="password" id="confirm_password" name="signup_password_confirm" class="inputbox" required placeholder="<?php _e("Confirm password", 'kleo_framework');?>"> </div>
In this same sign up form I want to have a dropdown menu where you select your age because it didn’t come included in the theme. The age options being from 18-99.
How can I implement this?
Thanks
Regards
- You must be logged in to reply to this topic.