| Server IP : 216.238.66.20 / Your IP : 216.73.216.199 Web Server : nginx/1.30.4 System : Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/sweetheart.mx/htdocs/wp-content/plugins/backwpup/ |
Upload File : |
<?php
/**
* Template Name: Cloud Auth Endpoint
* Description: A bare page for Cloud Auth endpoint response.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BackWpUP Auth Endpoint</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f9f9f9;
color: #333;
}
.message {
text-align: center;
}
</style>
</head>
<body>
<div class="message">
<h1>You can close this page.</h1>
<p>This tab will close automatically in <span id="countdown">20</span> seconds.</p>
</div>
<script>
let countdownElement = document.getElementById('countdown');
let countdown = 20;
const interval = setInterval(() => {
countdown--;
countdownElement.textContent = countdown;
if (countdown <= 0) {
clearInterval(interval);
window.close();
}
}, 1000);
</script>
</body>
</html>
<?php
exit;