HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/www/wp-content/plugins/wpforms-pdf/templates/pdf/html.php
<?php
/**
 * WPForms PDF: Page HTML template.
 *
 * @since 1.0.0
 *
 * @var string $fonts_css      CSS content for fonts.
 * @var string $html_css       CSS content.
 * @var string $pdf_tuning_css CSS content for tuning PDF output.
 * @var string $body           Body content.
 * @var string $body_class     Body CSS class.
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped, WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet
?>
<!DOCTYPE html>
<html>
<head>
	<title>PDF</title>

	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta http-equiv="X-UA-Compatible" content="ie=edge">

	<style id="html-css">
		<?php echo $fonts_css; ?>
		<?php echo $html_css; ?>
	</style>

	<style id="pdf-tuning-css">
		<?php echo $pdf_tuning_css; ?>
	</style>

</head>
<body class="<?php echo $body_class; ?>">
	<?php echo $body; ?>
</body>
</html>