-
Notifications
You must be signed in to change notification settings - Fork 0
/
bugreport.html
35 lines (35 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>Bugreport | OS | BubbleGum Team</title>
<link id="css_theme" rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<nav>
<a href="index.html"><img src="img/arrow.svg"></a>
<a href="devices.html">Devices</a>
<a href="https://github.com/BubbleGum-OS">Sources</a>
<a href="maintainform.html">Become a maintainer</a>
<a href="bugreport.html">Report a bug</a>
<a href="https://bubblegumports.github.io/index.html">Our ports</a>
<a href="https://bubblegumteam.github.io/index.html">About us</a>
<img id="theme_changer" src="img/theme-light.svg">
</nav>
</header>
<main>
<h2>Bug name</h2>
<input id="bugname">
<h2>Bug description</h2>
<textarea id="bugdesc"></textarea>
<br>
<br>
<button id="bugsend">Send</button>
</main>
<footer>
<h5>Powered by <a href="https://t.me/joinchat/TVDzOnR8iUALsfK6">BubbleGum</a> team | Made with ❤️ by Zadli</h5>
</footer>
<script src="js/bugreport.js"></script>
<script src="js/themes.js"></script>
</body>
</html>