-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
56 lines (52 loc) · 2.42 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mojira Helper Messages</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="shortcut icon" href="favicon.ico" />
<script src="https://kit.fontawesome.com/76ec3903cc.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="background container-fluid">
<div class="main">
<h2 class="display-4">Mojira Helper Message Web Application</h2>
<div class="alert alert-warning">
<button type="button" class="btn-close float-end" data-bs-dismiss="alert" aria-hidden="true"></button>
<div class="icon">
<i class="fas fa-exclamation-triangle"></i>
</div>
Please note that these messages may only be used by Mojira helpers and moderators.
</div>
<div class="selector">
<select class="form-select me-sm-2">
<option value="0" selected>Select a message</option>
</select>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle align-baseline" type="button" id="dropdownMenuButton"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Project: MC
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton" id="projectDropdownMenu">
</ul>
</div>
</div>
<div class="inputarea">
<div class="stdtext">
<p class="text-body-secondary" id="msginfo">Please select a message.</p>
</div>
</div>
<button type="button" class="btn btn-outline-secondary" id="copybutton" data-toggle="tooltip"
data-placement="top" title="Copied!" disabled>Copy</button>
<div class="footer">
<small class="text-body-secondary">Made by <a href="https://bugs.mojang.com/secure/ViewProfile.jspa?name=Bemoty"
target="_blank">Bemoty</a></small>
</div>
</div>
</div>
<!-- Import JS Bundle -->
<script src="bundle.js"></script>
</body>
</html>