FuriKani/popup.html

50 lines
1.1 KiB
HTML
Raw Normal View History

2022-03-19 19:07:22 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2022-03-20 14:54:48 +00:00
<link rel="stylesheet" href="src/styles.css">
2022-03-19 19:07:22 +00:00
</head>
<body>
2022-03-20 14:54:48 +00:00
<header>
<h1>FuriKani</h1>
<h2>v0.4</h2>
</header>
2022-03-19 19:07:22 +00:00
2022-03-20 14:54:48 +00:00
<div id="token-area">
<div id="input-area">
<span id="token-status"></span>
<input type="text" id="token" placeholder="Wanikani Token"/>
<button id="submit-token">OK</button>
</div>
<span id="error-text">
</span>
</div>
<div id="settings-area">
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
test 1
</label>
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
test 2
</label>
2022-03-20 00:04:00 +00:00
2022-03-20 14:54:48 +00:00
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
test 3
</label>
</div>
2022-03-20 00:04:00 +00:00
2022-03-20 14:54:48 +00:00
<footer>
2022-03-20 00:04:00 +00:00
Using WaniKani Level <span id="level"></span>
2022-03-20 14:54:48 +00:00
</footer>
2022-03-19 19:07:22 +00:00
2022-03-20 14:54:48 +00:00
<script src="src/popup.js"></script>
2022-03-19 19:07:22 +00:00
</body>
</html>