# learnpress/4.1.7/inc/admin/views/tools/database/html-remove-database.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.1.7. 28 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.1.7/code/inc/admin/views/tools/database/html-remove-database.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.1.7/raw/inc/admin/views/tools/database/html-remove-database.php
- Modified: 2022-09-13T03:07:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.1.7/code/inc/admin/views/tools/database/html-remove-database.php#L10-L20`.

```php
<?php
/**
 * @author  ThimPress
 * @package LearnPress/Admin/Views
 * @version 3.0.0
 */

defined( 'ABSPATH' ) || die();
?>

<div class="card">
	<h2><?php _e( 'Remove current Data', 'learnpress' ); ?></h2>
	<p><?php _e( 'Remove all courses, lessons, quizzes and questions.', 'learnpress' ); ?></p>
	<form method="post" name="learn-press-form-remove-data">
		<div class="">
			<p><?php _e( 'Be careful before using this action!', 'learnpress' ); ?></p>
		</div>
		<label class="hide-if-js">
			<input type="checkbox" name="action" value="learn-press-remove-data"/>
			<?php _e( 'Check this box and click this button again to confirm.', 'learnpress' ); ?>
		</label>
		<p class="tools-button">
			<button class="button button-fade"><?php esc_html_e( 'Remove', 'learnpress' ); ?></button>
		</p>
		<?php wp_nonce_field( 'learn-press-remove-data', 'remove-data-nonce' ); ?>
	</form>
</div>

```
