-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequestgame.html
90 lines (89 loc) · 3.21 KB
/
requestgame.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
<!DOCTYPE html>
<html>
<head>
<div class="locbar" style="height: 70px; background-color: #000000; display: flex; justify-content: center; align-items: center; padding-left: 20px; padding-right: 20px;">
<a href="#" onclick="window.location.href='/bookmarklets.html'" style="padding: 20px 30px; margin-right: 10px;">Bookmarklets</a>
<a href="#" onclick="window.location.href='/settings.html'" style="padding: 20px 30px; margin-right: 10px;">Settings</a>
<a href="#" onclick="window.location.href='/requestgame.html'" style="padding: 20px 30px;">Game Request</a>
<a href="#" onclick="window.location.href='/surffreely.html'" style="padding: 20px 30px; margin-left: 10px;">Surf The Web</a>
<a href="#" onclick="window.location.href='/projects.html'" style="padding: 20px 30px; margin-left: 10px;">Home</a>
</div>
<link rel="shortcut icon" type="image/png" href="IMG/logo.png">
<link rel="icon" type="image/png" href="IMG/logo.png">
<title>Game Submission</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
color: purple;
}
h1 {
margin-top: 50px;
margin-bottom: 20px;
}
p {
margin-bottom: 50px;
color: purple;
}
.submit-link {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
transition: background-color 0.3s ease;
}
.submit-link:hover {
background-color: #3E8E41;
}
</style>
</head>
<body>
<script>
window.onload = function() {
var savedTheme = localStorage.getItem('theme');
if (savedTheme) {
document.body.style.backgroundColor = savedTheme;
var locbar = document.getElementsByClassName('locbar')[0];
if (locbar) {
locbar.style.backgroundColor = savedTheme;
}
}
if (window.location.href.indexOf("projects.html") > -1) {
var savedTheme = localStorage.getItem('theme');
if (savedTheme) {
document.body.style.backgroundColor = savedTheme;
var locbar = document.getElementsByClassName('locbar')[0];
if (locbar) {
locbar.style.backgroundColor = savedTheme;
}
}
}
}
function setTheme(color) {
localStorage.setItem('theme', color);
document.body.style.backgroundColor = color;
var locbar = document.getElementsByClassName('locbar')[0];
if (locbar) {
locbar.style.backgroundColor = color;
}
if (window.location.href.indexOf("projects.html") > -1) {
localStorage.setItem('theme', color);
document.body.style.backgroundColor = color;
var locbar = document.getElementsByClassName('locbar')[0];
if (locbar) {
locbar.style.backgroundColor = color;
}
}
}
</script>
<h1>Game Submission</h1>
<p>Thank you for your interest in contributing to our website! To submit your content, please fill out the following form:</p>
<a href="https://forms.gle/xLHHqUGFdN68GbpE6" class="submit-link">Submit Your Content</a>
<p>Or fill it out below</p>
<div>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdRJcsDEZcwaeAuMHrlReCyFRJ_k2ULop6qENO22ymYrp-LcA/viewform?embedded=true" width="640" height="515" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</body>
</html>