<?php
wp_nonce_field( 'add-user', '_wpnonce_add-user'
); ?>
<table class="form-table" role="presentation">
<tr class="form-field form-required">
<th scope="row"><label for="adduser-email"><?php
echo esc_html( $label ); ?></label></th>
<td><input name="email" type="<?php
echo esc_attr( $type ); ?>" id="adduser-email" class="wp-suggest-user" value="" /></td>
</tr>
<tr class="form-field">
<th scope="row"><label for="adduser-role"><?php
_e( 'Role'
); ?></label></th>
<td><select name="role" id="adduser-role">
<?php
wp_dropdown_roles( get_option( 'default_role'
) ); ?>
</select>
</td>
</tr>
<?php
if ( current_user_can( 'manage_network_users'
) ) { ?>
<tr>
<th scope="row"><?php
_e( 'Skip Confirmation Email'
); ?></th>
<td>
<input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" />
<label for="adduser-noconfirmation"><?php
_e( 'Add the user without sending an email that requires their confirmation.'
); ?></label>
</td>
</tr>