The following files exists in this folder. Click to view.
add-words.php
api/
components/
include.php
index.php
ini/
login.php
logout.php
practice.php
progress.php
public/
scripts/
util/
word.php
practice.php
39 lines ASCII Windows (CRLF)
<?php
include "include.php";
login_guard();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include "components/head.php" ?>
</head>
<body>
<?php include "components/header.php" ?>
<main class="floating">
<p id="word-container"></p>
<div id="translations"></div>
<div>
<button id="disable-selected">Disable Selected</button>
<button id="reveal-answers">Reveal</button>
<button id="submit-problem">Submit</button>
<button id="gpt-exam-open">Gpt Exam</button>
</div>
</main>
<section id="gpt-exam-window">
<div id="gpt-exam-questions">
</div>
<button id="gpt-exam-copy">copy</button>
<button id="gpt-exam-close">close</button>
</section>
<script src="public/practice.js"></script>
</body>
</html>