diff options
author | Anna Knoerr <an.kn@protonmail.ch> | 2021-09-06 21:59:37 +0200 |
---|---|---|
committer | Anna Knoerr <an.kn@protonmail.ch> | 2021-09-06 21:59:37 +0200 |
commit | 5c4635daf3b5f707c8815e540300c306f0dca096 (patch) | |
tree | d250f7d5591dbcca2ad318a742464a3d68e15431 /index.html |
index file
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..67e1ff5 --- /dev/null +++ b/index.html @@ -0,0 +1,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> |