-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontact.html
41 lines (40 loc) · 2 KB
/
contact.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head http-equiv="Access-Control-Allow-Origin" content="discord.com">
<title>Contact form</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="description" content="3DS web stuff contact form.">
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/contact.css">
<script src="scripts/global.js" type="text/javascript"></script>
<!-- <script src="scripts/contact.js" type="text/javascript"></script> -->
<script src="scripts/lib/net.js" type="text/javascript"></script>
</head>
<body>
<div id="screens">
<div id="top-screen">
<h1>Contact form</h1>
<p>Here you can report a bug or submit an idea directly from your console.</p>
<p>Please don't abuse this system to spam, or I will have to disable it.</p>
<p>"Buggy", "glitchy", "broken", "doesn't work" is not a valid bug report. Explain with as many details as you can, so I'll be able to diagnose and fix it.</p>
</div>
<div id="bottom-screen">
<p style="color: red;">
Contact form has been disabled
</p>
<!--
<div id="form">
<label for="email-input">Email address: (optional but should be specified)</label>
<input type="email" placeholder="example@mail.com" class="full-width" id="email-input">
<label for="content-input">Your message:</label>
<p id="content-error"></p>
<textarea placeholder="Please explain your problem with enough details." maxlength="2000" class="full-width screen-unlocker" id="content-input"></textarea>
<button class="full-width" id="btn-submit">Submit</button>
</div>
-->
</div>
</div>
</body>
</html>