<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="src/styles.css">
</head>
<body>
    <header>
        <h1>FuriKani</h1>
        <h2>v0.6.2</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">
        <div class="setting">
            <label class="switch">
                <input type="checkbox" id="setting-global">
                <span class="slider round"></span>
            </label>

            <span class="description">Enable Furikani</span>
        </div>
        
        <div class="setting">
            <label class="switch">
                <input type="checkbox" id="setting-vocabulary">
                <span class="slider round"></span>
            </label>

            <span class="description">Use Vocabulary List</span>
        </div>

        <div class="setting">
            <label class="switch">
                <input type="checkbox" id="setting-kanji">
                <span class="slider round"></span>
            </label>

            <span class="description">Use Kanji List</span>
        </div>
    </div>

    <footer>
        <span id="level-text">Using WaniKani Level <span id="level"></span></span>

        <span id="author" >Made by <a target="_blank" href="https://github.com/Lauchmelder23">Lauchmelder</a></span>
        <a id="source" target="_blank" href="https://github.com/Lauchmelder23/FuriKani">Source Code</a>
    </footer>
    
    <script src="src/popup.js"></script>
</body>
</html>