-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
28 lines (28 loc) · 1.16 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
header("Content-Security-Policy: " .
"default-src 'self'; img-src https://*; " .
"child-src 'none'; " .
"style-src 'self' https://fonts.googleapis.com/css; " .
"font-src 'self' https://fonts.gstatic.com/s/specialelite/v7/9-wW4zu3WNoD5Fjka35JmwYWpCd0FFfjqwFBDnEN0bM.woff2"
);
header('X-Frame-Options: SAMEORIGIN');
header('X-XSS-Protection: 1; mode=block');
header('Referrer-Policy: no-referrer');
?>
<!DOCTYPE html>
<html lang="en-GB" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<head>
<title>PwGen</title>
<link type="image/x-icon" rel="shortcut icon" href="logo.png">
<link href="https://fonts.googleapis.com/css?family=Special+Elite" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="theme-color" content="#ffaa00">
<link rel="manifest" href="manifest.json?v3">
<link rel="stylesheet" type="text/css" href="style.css?v3">
<script lang="javascript" src="script.js?v3" ></script>
</head>
<body>
<div>Please enable JavaScript to use this app.</div>
</body>
</html>