-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
33 lines (31 loc) · 958 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings</title>
<link rel="stylesheet" href="css/pico.min.css">
<link rel="stylesheet" href="css/popup.css">
<script src="js/popup.js" defer></script>
</head>
<body>
<main class="container">
<!-- <h1>Tixcraft Helper</h1> -->
<h2>Settings</h2>
<form>
<fieldset>
<!-- <legend>Ticket</legend> -->
<label for="auto-check-terms">
<input id="auto-check-terms" type="checkbox" role="switch" checked />
自動勾選同意會員服務條款
</label>
<label for="auto-solve-captcha">
<input id="auto-solve-captcha" type="checkbox" role="switch" checked />
自動填入驗證碼
</label>
</fieldset>
</form>
<button id="create-captcha-solver">啟動 Captcha solver</button>
</main>
</body>
</html>