File: /home/p/e/r/perditaeyz/www/wp-content/plugins/better-wp-security/core/templates/lockout/lockout.php
<?php
/**
* @var \iThemesSecurity\Lib\Lockout\Context $context
* @var string $message
* @var array[] $actions
*/
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="<?php echo plugin_dir_url( __FILE__ ) . 'lockout.css'; ?>" type="text/css" rel="stylesheet">
<?php wp_no_robots(); ?>
<title><?php esc_html_e( 'Forbidden', 'better-wp-security' ); ?></title>
</head>
<body id="error-page">
<div id="lock_out_screen">
<div class="container">
<div id="lockout-computer" class="flex box3">
<img src="<?php echo plugin_dir_url( __FILE__ ) . 'icon.svg'; ?>" alt=""/>
</div>
<div id="lockout-text" class="flex box3">
<h1><?php esc_html_e( 'You have been locked out.', 'better-wp-security' ) ?></h1>
<p style="font-weight:bold;"><?php echo $message; ?></p>
<?php do_action( 'itsec_lockout_template_before_actions', $context ); ?>
<?php foreach ( $actions as $action ): ?>
<a class="btn <?php echo empty( $action['secondary'] ) ? '' : 'secondary' ?>" href="<?php echo esc_url( $action['uri'] ); ?>">
<?php echo $action['label']; ?>
</a>
<?php endforeach; ?>
</div>
</div>
</div>
</body>
</html>