summaryrefslogtreecommitdiff
path: root/index.html
blob: 67e1ff5649208f008922b7980be94f47b34eb360 (plain)
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
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Annas tolle Website!</title>
</head>

<body>
    <h4>Maby try one of these:</h4>
    <ul>
        <li><a href="https://campus-kit.de">KIT Campus in Minecraft</a></li>
        <li><a href="https://git.kobert.dev">Cgit</a></li>
        <li><a href="https://games.kobert.dev">Game Lobby</a></li>
        <li><a href="https://github.com/squirrel-labs/ratatosk">Rask github</a></li>
        <li><a href="https://rask.rocks">Rask Preview</a></li>
        <li><a href="/spotify/landing.html">Spotify intersecter</a></li>
        <li><a href="https://wiki.kobert.dev">Uff-os Wiki</a></li>
    </ul>
    <h4>Online Whiteboard</h4>
    <input type="text" id="whiteboard_name" placeholder="Whiteboard name">
    <input type="text" id="user_name" placeholder="Username">
    <button id="Whitebord_button" onclick="redirect_whiteboard()">Open whiteboard</button>
</body>
<script>
    function redirect_whiteboard() {
        let user = document.getElementById("user_name").value;
        let id = document.getElementById("whiteboard_name").value;
        window.location = "https://kobert.dev/whiteboard/?whiteboardid=" + id + "&username=" + user;
    }
</script>

</html>