-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbugreport.html
120 lines (116 loc) · 4.62 KB
/
bugreport.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<script>
// Hi BBFC developers! To disable the site so it redirects to the under development page, uncomment the next line (remove "//" from the beginning) and commit your changes
//window.location.replace("https://bbfcgaming.github.io/development.html")
</script>
<!--
____ ____ ____________ ______ _
/ __ )/ __ )/ ____/ ____/ / ____/___ _____ ___ (_)___ ____ _
/ __ / __ / /_ / / / / __/ __ `/ __ `__ \/ / __ \/ __ `/
/ /_/ / /_/ / __/ / /___ / /_/ / /_/ / / / / / / / / / / /_/ /
/_____/_____/_/ \____/ \____/\__,_/_/ /_/ /_/_/_/ /_/\__, /
/____/
-->
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="cookieconsent.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129128356-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129128356-2');
</script>
<meta name="google-site-verification" content="Io0trlTDx8Uha56hvGg9HZLwlCSCWzgy7ObKIACm54s" />
<script src="custombftn.js" async></script>
<title>Bug Reporter - BBFC Gaming</title>
<style>
body {
background-color: black;
color: white;
font-family: monospace
}
hr {
color: white;
background-color:red;
}
button {
background-color: blue;
color: white;
}
</style>
</head>
<body>
<div id="title">
<center><img width="20%" src='image/bbfclogoscaled.png'></center>
<hr>
<!-- Edit the Buttons in buttons.html-->
<!--Buttons-->
<div id="buttons">
<a href="nojs.html" class="buttons-link">No JavaScript?</a>
</div>
<script>
$(function(){
$("#buttons").load("buttons.html");
});
</script> </div>
<hr>
<br>
<form method="post" enctype="text/plain" action="mailto:[email protected]">
Email: <input type="email" name="Email" />
<br>
<br>
<b>Which Game are You Submitting the Bug on?</b>
<select name="Game">
<option value="Ninja_Parkour">Ninja Parkour</option>
<option value="Endurance_Test">Endurance Test</option>
<option value="Gem_Factory">Gem Factory</option>
<option value="Egg_Hatch_Sim">Pokémon Egg Hatching Simulator</option>
<option value="Tap_Royale">Pokémon Tap Royale</option>
<option value="Congealed">Congealed Bacon Fat</option>
</select>
<br>
<br>
<!--
<b>What is your age range?</b>
<input type="radio" name="age" value="1-10" />1-10 Years
<input type="radio" name="age" value="11-15" />11-15 Years
<input type="radio" name="age" value="16-20" />16-20 Years
<input type="radio" name="age" value="21over" />21 Years or over
<br>
<br>
<b>What's your favorite kind of video game?</b>
<select name="favgame">
<option value="Platformer">Platformer</option>
<option value="Shooter">Shooter</option>
<option value="Survival">Survival</option>
<option value="SurvivalHorror">Survival Horror</option>
<option value="Adventure">Adventure</option>
<option value="RPG">RPG</option>
<option value="MMORPG">MMORPG</option>
<option value="Sandbox">Sandbox</option>
<option value="Fantasy">Fantasy</option>
<option value="Simulation">Simulation</option>
<option value="Strategy">Strategy</option>
<option value="Sports">Sports</option>
<option value="Other">Other</option>
</select>
-->
<br>
<br>
<hr />What is the Bug in the Selected Game?
<br>
<br>
<textarea name="comments" placeholder="What is the Bug you want to Report?" rows="5" cols="65" wrap="wrap"></textarea>
<br>
<p><input type="submit" value="Submit Form"/>
<input type="reset" value="Clear Form" /></p>
</form>
</body>
<div id="myCookieConsent">
<a id="cookieButton">Understood</a>
<div>This website is using cookies. <a href="privacypolicy.html">More details</a></div>
</div>
</html>