-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
71 lines (71 loc) · 3.54 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Customize MH+</title>
<link rel="stylesheet" href="css/popup/bootstrap.min.css">
<link rel="stylesheet" href="css/popup/popup.css">
</head>
<body style="font-size: 14px; width: 400px;">
<div id="popup">
<div class="container-fluid bg-primary">
<div class="container text-center text-white">
<h1 class="display-4 header user-select-none">MH+</h1>
</div>
</div>
<div class="container mt-4">
<div class="form-group">
<label>Dashboard Style</label>
<select id="dashboard-select" class="form-control">
<option value="default">Default</option>
<option value="purple">Purple</option>
<option value="blue">Blue</option>
<option value="lime">Lime</option>
<option value="custom">Custom</option>
</select>
<div class="form-row custom-theme-fields">
<div class="form-group">
<label>Background Color</label>
<input type="text" class="form-control" id="custom-bg-color">
</div>
<div class="form-group">
<label>Foreground Color</label>
<input type="text" class="form-control" id="custom-fg-color">
</div>
<div class="form-group">
<label>Primary Color</label>
<input type="text" class="form-control" id="custom-primary-color">
</div>
</div>
<div class="form-row custom-theme-fields">
<div class="form-group">
<label>Selected Color</label>
<input type="text" class="form-control" id="custom-select-color">
</div>
<div class="form-group">
<label>Text Color</label>
<input type="text" class="form-control" id="custom-text-color">
</div>
<div class="form-group">
<label>Danger Color</label>
<input type="text" class="form-control" id="custom-danger-color">
</div>
</div>
<button id="save" class="btn btn-primary">Save</button>
<p id="status" class="mt-4"></p>
<div id="other">
<label class="status" id="progress">⚙️ Fetching authentication...</label>
<label>Text Format</label>
<select name="format" id="format" class="form-control">
<option value="json">JSON</option>
<option value="human">Human-friendly</option>
</select>
<button id="copy" class="btn btn-primary">Copy</button>
</div>
</div>
</div>
</div>
<script src="js/popup.js"></script>
</body>
</html>