Advertisement
Guest User

Untitled

a guest
Oct 11th, 2017
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1.  
  2. <!doctype html>
  3. <html>
  4. <head>
  5. <link rel="icon" href="/assets/icon.ico" type="image/x-icon"/>
  6. <title>
  7. Peter's Kahoot Bot
  8. </title>
  9. </head>
  10. <script>
  11. function change_display() {
  12. if (document.getElementById('bot_radio').checked) {
  13. document.getElementById('gamepin').style.display = 'block';
  14. document.getElementById('username').style.display = 'block';
  15. } else {
  16. document.getElementById('gamepin').style.display = 'none';
  17. document.getElementById('username').style.display = 'none';
  18. }
  19. }
  20. change_display()
  21. </script>
  22. <body>
  23. <!--#include virtual="/menu.html" -->
  24. <form action="https://reteps.tk/school/kahoot.php" method="get">
  25. <input type="text" name="quizid" style="width:300px;" placeholder="Kahoot id"><br>
  26. <input type="radio" name="what" value="text" onclick="change_display()">Answers<br>
  27. <input type="radio" name="what" value="code" onclick="change_display()">Colors<br>
  28. <input type="radio" name="what" value="bot" id="bot_radio" onclick="change_display()">Bot<br>
  29. <input type="number" name="gamepin" placeholder="Gamepin" display="none" id="gamepin">
  30. <input type="text" name="username" placeholder="Username" display="none" id="username">
  31. <input type="submit" value="Go"><br>
  32. </form>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement