This repository was archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbug-report.html
More file actions
110 lines (98 loc) · 3.33 KB
/
bug-report.html
File metadata and controls
110 lines (98 loc) · 3.33 KB
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
<!--When figured out, have the response convert the data into a .json file or pdf-->
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<!--Start of Head-->
<head>
<!--Start Title-->
<title>
Bug Report
</title>
<!--End Title-->
<!--Start of Meta-->
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!--End of Meta-->
<!--Start of CSS Connect-->
<!--These files are found in the 'CSS' folder-->
<link type="text/css" rel="stylesheet" href="css/global.css"/> <!--CSS used in every file-->
<link type="text/css" rel="stylesheet" href="css/bug-report.css"/> <!--CSS for this file--> <!--Change 'template' to the html file's name-->
<!--End of CSS Connect-->
<!--Start of JS Connect-->
<!--These files are found in the 'JS' folder-->
<script src="js/global.js"></script> <!--JS in every file-->
<script src="js/template.js"></script> <!--JS for this file--> <!--Change 'template' to this file's name-->
<!--End JS Connect-->
</head>
<!--End of Head-->
<!--Start Body-->
<body>
<!--Start Page Title-->
<h1 id="title">
Bug Report
</h1>
<!--End Page Title-->
<div class="main">
<!--Start Report Intro-->
<p>
Welcome to the Bug Report Form.
<br>If you have an issue that isn't listed on this page, please send an email to
<a href="<!--CodingSheet email address-->"><!--CodingSheets Email address--></a>.
Otherwise, fill out this form.
<br>
<br>If you did not mean to click on this link, is a
<a class="link" href="homepage.html">link to the homepage</a>.
<p>
<!--End Report Intro-->
</div>
<!--Start Report Notice-->
<h4>
Notice
</h4>
<div class="main">
<p>
If a sections has a <span class="bold"><span class="req">*</span></span>,
that field must be filled out before you can continue.
<br>
Also, this form is anonymous and all the data is only distributed to a seperate file
that is not under the MIT Open-Source License.
It is like that for your privacy and only people who work with me, Ruby Rose,
to make <span class="c">Coding</span><span class="s">Sheets</span> and I, Ruby Rose
can see the information you put.
<br>
<br>The data you put is not to be shared to anyone else
</p>
</div>
<!--End Report Notice-->
<!--Start Contact-->
<h2>
Contact
</h2>
<div class="main">
<!--Start Form-->
<div class="tables"> <!--For Aesthetic purposes-->
<form action="php/bug-report-data.php" method="post" target="_blank">
<!--Start Name-->
<label for="name">Your Name<span class="req">*</span>:</label>
<br>
<input type="text" id="name" name="name" required>
<!--End Name-->
<br>
<br>
<!--Start Email-->
<label for="email">Email<span class="req">*</span>:</label>
<br>
<input type="text" id="email" name="email" required>
<!--End Email-->
<br>
<br>
<label for="Country">Country<span class="req">*</span>:</label>
<br>
<input type="text" id="country" name="country" required>
<br>
<input type="submit">
</form>
</div>
<!--End Form-->
</div>
</body>
</html>