1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?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>
|