-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppSupport.html
93 lines (88 loc) · 4.23 KB
/
AppSupport.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>thisIsTheFoxe - App Sopport</title>
<link rel="apple-touch-icon" sizes="180x180" href="./assets/images/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./assets/images/favicon-16x16.png" />
<link rel="manifest" href="./assets/site.webmanifest" />
<link rel="mask-icon" href="./assets/images/safari-pinned-tab.svg" color="#f18719" />
<link rel="shortcut icon" type="image/x-icon" href="./assets/images/favicon.ico" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta property="og:image" content="./assets/images/apple-touch-icon.png" />
<link rel="stylesheet" href="./assets/css/styles.css" />
<meta name="viewport" content="width = device-width" />
</head>
<body>
<noscript>Please Enable JavaScript to enjoy this Website with all it's features :)</noscript>
<h1>App Support</h1>
<p class="contactMe">Welcome to my App-Support website. If you have any problems with any of my apps or feedback for
me (the
developer) please let me know what you think.</p>
<br />
<form>
<div>
<label>Which App:</label>
<select id="app">
<option value="pong">Pong Adventure</option>
<option value="siri">Adventures for Siri</option>
<option value="aar">AvoidAR</option>
<option value="vFS">FINE Stickers</option>
<option value="geo">GeoguessAR</option>
<option value="jwx">JWX</option>
<option value="6imal">seximal</option>
<option value="ttt">TicTacToe³</option>
<option value="lilttt">tic-tac-toe²</option>
<option value="todo">ToDo-pamine</option>
<option value="lilcounter">Days Since — Counter</option>
<option value="vijo">vijo — your video journal</option>
<option value="2had">dayshape</option>
</select>
<br />
<label>Kind of feeback:</label>
<select id="kind">
<option value="bug">I have a problem</option>
<option value="idea">Idea and other feedback</option>
</select>
</div>
<textarea id="text"></textarea><br />
<button onclick="send()">Continue</button>
</form>
<br />
<a href="../" class="bottom-padding">Back to main page...</a>
<script src="https://rawgit.com/jackmoore/autosize/master/dist/autosize.min.js"></script>
<script>
autosize(document.getElementById("text"));
function send() {
var mail = document.getElementById("kind").selectedOptions[0].value == "bug" ? "help" : "feedback"
mail += "[email protected]"
var subject = "";
switch (document.getElementById("app").value) {
case "pong": subject = "Pong Adventure"; break;
case "ttt": subject = "TicTacToe3"; break;
case "todo": subject = "ToDo-pamine"; break;
case "jwx": subject = "JWX"; break;
case "aar": subject = "AvoidAR"; break;
case "6imal": subject = "seximal"; break;
case "vFS": subject = "FINE Stickers"; break;
case "siri": subject = "Adventures for Siri"; break;
case "geo": subject = "GeoguessAR"; break;
case "lilcounter": subject = "Days Since"; break;
case "lilttt": subject = "tic-tac-toe2"; break;
case "vijo": subject = "vijo"; break;
case "2had": subject = "dayshape"; break;
}
var text = document.getElementById("text").value
var link = "mailto:" + mail
+ "?subject=" + escape(subject)
+ "&body=" + escape(text);
var pid = window.setInterval(function () {
window.location.href = "../";
typeof pid !== 'undefined' && window.clearInterval(pid);
}, 1000);
window.location.href = link;
}
</script>
</body>
</html>