-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 2.74 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
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Package Finder</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<button class="btn btn-warning top-right" id="adbBtn" onclick="checkADB()">Check ADB Connection</button>
<button class="btn btn-outline-warning top-right" id="adbBtnC" hidden>ADB Connected</button>
<h1 class="top-center">Package Finder</h1>
</div>
</div>
</div>
<div class="container-fluid centered-form">
<div class="row">
<div class="col-sm-12 col-md-12 form-danger">
<form id="formApp">
<div class="mb-3">
<label for="androidApp" class="form-label">Android Application</label>
<input type="text" class="form-control" id="androidApp" aria-describedby="emailHelp">
<div id="appHelp" class="form-text">Input the app name you want to search</div>
</div>
<div class="mb-3">
<label for="listApp" class="form-label">Android Package</label>
<ul class="form-control" id="listApp" hidden>
</ul>
</div>
<div class="d-flex justify-content-center">
<button type="submit" id="searchApp" class="btn btn-danger" hidden>Submit</button>
</div>
</form>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.0.slim.js" integrity="sha256-7GO+jepT9gJe9LB4XFf8snVOjX3iYNb0FHYr5LI1N5c=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="script.js"></script>
</body>
</html>