-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbug_report.html
More file actions
23 lines (21 loc) · 846 Bytes
/
bug_report.html
File metadata and controls
23 lines (21 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<title>forkphorus bug report redirector</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex">
<meta name="color-scheme" content="light dark">
</head>
<body>
<noscript>
<p>Please enable JavaScript.</p>
</noscript>
<script>
var searchParams = new URLSearchParams(location.search);
var title = encodeURIComponent(searchParams.get('title') || '');
var body = encodeURIComponent(searchParams.get('body') || '');
location.replace('https://github.com/forkphorus/forkphorus/issues/new?template=bug_report&labels=bug&title=' + title + '&body=' + body);
</script>
</body>
</html>