Show sourcecode

The following files exists in this folder. Click to view.

webbutv3/word-app/

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)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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>