FuriKani/popup.html
2022-03-20 15:54:48 +01:00

50 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="src/styles.css">
</head>
<body>
<header>
<h1>FuriKani</h1>
<h2>v0.4</h2>
</header>
<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>
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
test 3
</label>
</div>
<footer>
Using WaniKani Level <span id="level"></span>
</footer>
<script src="src/popup.js"></script>
</body>
</html>