mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 17:12:13 -06:00
29 lines
589 B
HTML
29 lines
589 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ s_doctitle }}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.8">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="box" style="opacity: 0; font-family: sans-serif">
|
|
<h3>please press F5 to reload the page</h3>
|
|
<p>sorry for the inconvenience</p>
|
|
</div>
|
|
|
|
<script>
|
|
setTimeout(function() {
|
|
document.getElementById('box').style.opacity = 1;
|
|
}, 500);
|
|
|
|
parent.toast.ok(30, parent.L.cf_ok);
|
|
parent.qsr('#cf_frame');
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
|