Files
Tricky-Addon-Update-Target-…/module/webroot/index.html
KOWX712 09c7cc27f1 ksu webui - initial
webui template from j-hc/zygisk-detach
2024-11-04 01:59:31 +08:00

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>