File: /home/globfdxw/www/wp-content/plugins/wpforms-pdf/templates/access/file-not-found.php
<?php
/**
* PDF File Not Found template.
*
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php esc_html_e( 'File Not Found', 'wpforms-pdf' ); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<main>
<div class="wpforms-pdf-file-not-found-content wpforms-file-download-content">
<img src="<?php echo esc_url( WPFORMS_PDF_URL . 'assets/images/frontend/file-download/triangle-exclamation.svg' ); ?>" alt="<?php esc_attr_e( 'File Not Found', 'wpforms-pdf' ); ?>">
<h1><?php esc_html_e( 'File Not Found', 'wpforms-pdf' ); ?></h1>
<p><?php esc_html_e( 'The requested PDF file does not exist.', 'wpforms-pdf' ); ?></p>
</div>
</main>
<?php wp_footer(); ?>
</body>
</html>