eight-hourr/extension/popup.html

22 lines
918 B
HTML
Raw Normal View History

2026-07-17 06:55:36 +00:00
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8" />
<style>
body { font-family: system-ui, sans-serif; width: 320px; margin: 0; padding: 16px; }
h1 { font-size: 16px; margin: 0 0 12px; }
label { display: block; font-size: 12px; margin-bottom: 4px; color: #555; }
input { width: 100%; padding: 8px; margin-bottom: 12px; box-sizing: border-box; }
button { width: 100%; padding: 10px; background: #2563eb; color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }
#status { margin-top: 12px; font-size: 12px; white-space: pre-wrap; }
</style>
</head>
<body>
<h1>吉八小 · 憑證同步</h1>
<label for="backendUrl">後端網址</label>
<input id="backendUrl" type="text" value="http://localhost:8765" />
<button id="syncBtn">同步登入憑證到後端</button>
<div id="status"></div>
<script src="popup.js"></script>
</body>
</html>