about summary refs log tree commit diff stats
path: root/src/pages/background/incognito.html
blob: a618cdb6e82b37b596789d1d38205effaa55cfab (plain) (blame)
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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8" />
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title data-localise="__MSG_instanceIsOff__">Initializing Cookies</title>
    <link href="../stylesheets/styles.css" rel="stylesheet" />
    <style>
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            width: 100vw;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            display: flex;
        }

        div {
            text-align: center;
        }
    </style>
</head>

<body>
    <div>
        <p>Initializing Cookies</p>
    </div>
    <script type="module" src="incognito.js"></script>
</body>

</html>