mirror of
https://gh.wpcy.net/https://github.com/Anyape/updatepulse-server.git
synced 2026-05-07 08:22:29 +08:00
12 lines
271 B
PHP
12 lines
271 B
PHP
<?php if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
} ?>
|
|
<html>
|
|
<head>
|
|
<title><?php echo esc_html( $title ); ?></title>
|
|
</head>
|
|
<body>
|
|
<h1><?php echo esc_html( $heading ); ?></h1>
|
|
<p><?php echo esc_html( $message ); ?></p>
|
|
</body>
|
|
</html>
|