-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (47 loc) · 1.68 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
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<!-- css -->
<link rel="stylesheet" href="style.css">
<!-- js -->
<script src="Mao.js"></script>
<script src="function.js"></script>
<title>振興五倍加碼券速查</title>
</head>
<body>
<div class="card">
<h1>振興五倍加碼券速查</h1>
<small>ver 1.0.4</small>
<small>更新第四周 地方創生券 </small>
<div class="content">
<div class="input-box">
<input type="email" placeholder="請填寫身分證 或 末3碼" id="code" autocomplete=”off” value="" id="input">
<button onclick="query()">查詢</button>
</div>
<div class="type">
<span>五倍券登記類型 : </span>
<div class="item-radio">
<input type="radio" value="" name="type" checked="checked">
<span>不限</span>
</div>
<div class="item-radio">
<input type="radio" value="1" name="type">
<span>數位</span>
</div>
<div class="item-radio">
<input type="radio" value="0" name="type">
<span>紙本</span>
</div>
</div>
</div>
<hr class="line">
<h1 id="result-title">查詢結果</h1>
<div class="result"></div>
</div>
</body>
</html>