PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-pro
/
modules
/
vendor-staff
/
templates
<?php $is_valid = true; if ( ! empty( $is_edit ) ) { $vendor_id = get_user_meta( $is_edit, '_vendor_id', true ); if ( $vendor_id != get_current_user_id() ) { $is_valid = false; } } ?> <?php if ( $is_valid ): ?> <form method="post" action="" class="dokan-form-horizontal vendor-staff register"> <input type="hidden" value="<?php echo $is_edit; ?>" name="staff_id"> <input type="hidden" value="<?php echo get_current_user_id(); ?>" name="vendor_id"> <?php wp_nonce_field( 'vendor_staff_nonce', 'vendor_staff_nonce_field' ); ?> <div class="dokan-form-group"> <label class="dokan-w3 dokan-control-label" for="title"><?php _e( 'First Name', 'dokan' ); ?><span class="required"> *</span></label> <div class="dokan-w5 dokan-text-left"> <input id="first_name" name="first_name" required value="<?php echo esc_attr( $first_name ); ?>" placeholder="<?php _e( 'First Name', 'dokan' ); ?>" class="dokan-form-control input-md" type="text"> </div> </div> <div class="dokan-form-group"> <label class="dokan-w3 dokan-control-label" for="title"><?php _e( 'Last Name', 'dokan' ); ?><span class="required"> *</span></label> <div class="dokan-w5 dokan-text-left"> <input id="last_name" name="last_name" required value="<?php echo esc_attr( $last_name ); ?>" placeholder="<?php _e( 'Last Name', 'dokan' ); ?>" class="dokan-form-control input-md" type="text"> </div> </div> <div class="dokan-form-group"> <label class="dokan-w3 dokan-control-label" for="title"><?php _e( 'Email Address', 'dokan' ); ?><span class="required"> *</span></label> <div class="dokan-w5 dokan-text-left"> <input id="email" name="email" required value="<?php echo esc_attr( $email ); ?>" placeholder="<?php _e( 'Email', 'dokan' ); ?>" class="dokan-form-control input-md" type="email"> </div> </div> <div class="dokan-form-group"> <label class="dokan-w3 dokan-control-label" for="title"><?php _e( 'Phone Number', 'dokan' ); ?></label> <div class="dokan-w5 dokan-text-left"> <input id="phone" name="phone" value="<?php echo esc_attr( $phone ); ?>" placeholder="<?php _e( 'Phone', 'dokan' ); ?>" class="dokan-form-control input-md" type="number"> </div> </div> <?php if ( $is_edit ): ?> <div class="dokan-form-group"> <label class="dokan-w3 dokan-control-label" for="title"><?php _e( 'Password', 'dokan' ); ?></label> <div class="dokan-w5 dokan-text-left form-row"> <input type="password" class="input-text dokan-form-control" name="password" id="reg_password" minlength="6" /> </div> <div style="left:-999em; position:absolute;"><label for="trap"><?php _e( 'Anti-spam', 'dokan-theme' ); ?></label><input type="text" name="email_2" id="trap" tabindex="-1" /></div> </div> <?php endif ?> <div class="dokan-form-group"> <div class="dokan-w5 dokan-text-left" style="margin-left:25%"> <input type="submit" id="" name="staff_creation" value="<?php echo $button_name; ?>" class="dokan-btn dokan-btn-danger dokan-btn-theme"> </div> </div> </form> <?php else: ?> <div class="dokan-error"> <?php echo sprintf( '<p>%s <a href="%s">%s</a></p>', __( 'Invalid staff. Please visit', 'dokan' ), esc_url( dokan_get_navigation_url( 'staffs' ) ), __( 'Back to list', 'dokan' ) ); ?> </div> <?php endif ?> <?php wp_enqueue_script( 'wc-password-strength-meter' ); ?>
[+]
..
[-] form.php
[edit]
[+]
vendor-staff
[+]
emails
[-] .templates.php
[edit]