Index: wp-admin/network/users.php
===================================================================
--- wp-admin/network/users.php	(revision 27304)
+++ wp-admin/network/users.php	(working copy)
@@ -77,6 +77,13 @@
 		}
 	}
 
+	/**
+	 * Fires at the end of the delete users form prior to the confirm button for plugins to add items to the form.
+	 *
+	 * @since 3.9.0
+	 */
+    do_action( 'delete_user_form', $current_user );
+
 	submit_button( __('Confirm Deletion'), 'delete' );
 	?>
 	</form>
Index: wp-admin/users.php
===================================================================
--- wp-admin/users.php	(revision 27304)
+++ wp-admin/users.php	(working copy)
@@ -248,7 +248,15 @@
 		<?php echo '<label for="delete_option1">' . __( 'Attribute all content to:' ) . '</label> ';
 		wp_dropdown_users( array( 'name' => 'reassign_user', 'exclude' => array_diff( $userids, array($current_user->ID) ) ) ); ?></li>
 	</ul></fieldset>
-	<input type="hidden" name="action" value="dodelete" />
+<?php
+	/**
+	 * Fires at the end of the delete users form prior to the confirm button for plugins to add items to the form.
+	 *
+	 * @since 3.9.0
+	 */
+    do_action( 'delete_user_form', $current_user );
+?>
+ 	<input type="hidden" name="action" value="dodelete" />
 	<?php submit_button( __('Confirm Deletion'), 'secondary' ); ?>
 <?php else : ?>
 	<p><?php _e('There are no valid users selected for deletion.'); ?></p>
