generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreport.html
177 lines (163 loc) · 8.04 KB
/
report.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous" />
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
<title>Report</title>
</head>
<body>
<header>
<div class="row g-0">
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<a href="./" class="logo">
<img src="assets/img/logo.png" alt="logo">
</a>
<div class="col-md-6 download-icon">
<a target="_blank" href="https://github.com/EonTAS/DebugMode" rel="noopener">
<i class="fas fa-cloud-download-alt" aria-hidden="true"></i>
<span class="sr-only">Download.</span>
</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse col-md-6" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="ui-menu-color-home nav-item col-md-4">
<a class="nav-link" href="./"><span>Home</span></a>
</li>
<li class="ui-menu-color-features nav-item col-md-4">
<a class="nav-link" href="features.html"><span>Features</span></a>
</li>
<li class="ui-menu-color-report nav-item active col-md-4">
<a class="nav-link" href="#"><span>Report</span></a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<section id="centerSection">
<div class="row">
<div class="col-md-6 col-xl-4">
<div class="row text-center bug-report-section">
<a target="_blank" class="download-icon" href="https://github.com/EonTAS/DebugMode/issues"
rel="noopener">
<i class="fas fa-bug" aria-hidden="true"></i>
<span class="sr-only">Bug List.</span>
</a>
<p>
Known Bugs found here, please read before posting
</p>
</div>
<div class="row">
<h3 class="text-center">
Example Report
</h3>
<div class="example-report">
Platform : Wii/Dolphin <br>
Inconvenience : 5/10 <br>
Problem : Crashes when loading ZSS with debug enabled <br>
Steps to reproduce : Disable stage render at any point and then go to css and move puck onto
zss, and then game cant load.
</div>
</div>
</div>
<div class="col-md-6 col-xl-8 report-form">
<section class="container-fluid">
<h3 class="uppercase text-center">
Found a Problem or have a suggestion?
</h3>
<h5 class="uppercase text-center">
Send it in!
</h5>
<div class="center-form">
<form action="./form submitted.html">
<input type="text" name="name" id="fullname" class="form-control" placeholder="Name"
required>
<input type="email" name="email" id="emailaddress" class="form-control" placeholder="Email"
required>
Submission Type:<br>
<input type="radio" id="typeBug" name="type" value="bug" required>
<label for="typeBug">
Bug Report <i class="fas fa-bug"></i>
</label><br>
<input type="radio" id="typeSuggestion" name="type" value="suggestion" required>
<label for="typeSuggestion">
Suggestion <i class="far fa-lightbulb"></i>
</label>
<textarea name="projectsummary" id="projectsummary" class="form-control" rows="5"
placeholder="Description" required></textarea>
<input type="checkbox" id="confirm" required>
<label for="confirm">
I have read and confirmed this is not already in the list of
bugs/suggestions
</label>
<div class="form-row text-center">
<div class="col">
<button type="submit" class="btn btn-secondary">
Send Report
</button>
</div>
</div>
</form>
</div>
</section>
</div>
</div>
</section>
<footer class="container-fluid">
<div id="footer-details" class="row">
<div class="col-8">
<h5 class="uppercase">
About
</h5>
<p class="inline-block">
Yo this is a site about that mod i made
</p>
</div>
<div class="col-4">
<h5 class="uppercase">
Social
</h5>
<ul class="list-inline social-links">
<li class="list-inline-item">
<a target="_blank" href="#">
<i class="fab fa-twitter" aria-hidden="true"></i>
<span class="sr-only">twitter.</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="#">
<i class="fab fa-youtube" aria-hidden="true"></i>
<span class="sr-only">Youtube.</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="#">
<i class="fab fa-discord" aria-hidden="true"></i>
<span class="sr-only">Discord.</span>
</a>
</li>
</ul>
</div>
</div>
</footer>
</body>
</html>