You've already forked Tricky-Addon-Update-Target-List
mirror of
https://github.com/KOWX712/Tricky-Addon-Update-Target-List.git
synced 2025-09-06 06:37:09 +00:00
30 lines
934 B
HTML
30 lines
934 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="/styles.css" type="text/css">
|
|
<script type="module" crossorigin src="/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="search-card">
|
|
<input type="text" class="search-input" id="search" placeholder="Search">
|
|
</div>
|
|
<div id="apps-list"></div>
|
|
<div class="floating-card">
|
|
<button class="floating-btn" id="add">Update Config</button>
|
|
</div>
|
|
<template id="app-template">
|
|
<div class="card">
|
|
<div class="content">
|
|
<p class="name"></p>
|
|
<input type="checkbox" class="checkbox" checked>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<div class="acknowledgment">
|
|
Acknowledgment to j-hc/zygisk-detach WebUI
|
|
</div>
|
|
</body>
|
|
</html> |