-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.js
97 lines (95 loc) · 2.68 KB
/
privacy.js
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
module.exports = (
`
<div>
<head>
<title>fffetch</title>
<link href="https://fonts.googleapis.com/css?family=Space+Mono" rel="stylesheet">
<style>
* {
box-sizing: border-box;
}
body, html {
font-family: 'Space Mono';
}
h2 {
font-family: 'Space Mono', monospace;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
}
.content {
padding-top: 30px;
}
a {
color: #000;
}
svg {
width: 30px;
height: 30px;
}
.nounderline {
text-decoration: none;
}
.mt1 {
margin-top: 1rem;
}
.ml05 {
margin-left: 0.5rem;
}
.s-i {
font-family: 'Space Mono';
outline: none;
padding: 1rem;
}
.s-s {
width: 32%;
}
.logger {
width: 100%;
margin-top: 30px;
height: 140px;
padding: 5px;
overflow: scroll;
background-color: #000;
}
.logger span {
font-size: 0.7rem;
color: white;
display: block;
}
.logger span.error {
color: red;
}
.logger span.success {
color: green;
}
form label span {
padding-bottom: 30px;
}
form button {
border: 0;
cursor: pointer;
padding: 12px 18px;
background-color: black;
color: white;
}
pre {
color: light-grey;
font-family: 'Space Mono';
font-size: 11px;
border: 1px solid black;
padding-top: 1em;
margin: 15px 0 15px 0;
width: 585px;
}
</style>
</head>
<div class='container'>
Use at your own risk
</div>
<a href="https://www.iubenda.com/privacy-policy/47713537" class="iubenda-white iubenda-embed iub-legal-only" title="Privacy Policy ">Privacy Policy</a><script type="text/javascript">(function (w,d) {var loader = function () {var s = d.createElement("script"), tag = d.getElementsByTagName("script")[0]; s.src="https://cdn.iubenda.com/iubenda.js"; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener("load", loader, false);}else if(w.attachEvent){w.attachEvent("onload", loader);}else{w.onload = loader;}})(window, document);</script>
</div>
`
)