login.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <p>Netsim is a simulator game intended to teach you the basics of how computer networks function, with an emphasis on security. You will learn how to perform attacks that real hackers use, and see how they work in our simulator!</p>
  2. <p>Netsim is completely free to play. To get started, log in below or register a new account.</p>
  3. <br><br>
  4. <?php if (isset($login_error)) { ?>
  5. <div class="ui-widget">
  6. <div class="ui-state-error ui-corner-all" style="padding: 0 .7em;">
  7. <p><span class="ui-icon ui-icon-alert" style="float: left; margin-right: .3em;"></span>
  8. <?=$login_error?></p>
  9. </div>
  10. </div>
  11. <?php } ?>
  12. <form method="post" action="./">
  13. Username:<br>
  14. <input type="text" name="username"><br>
  15. Password:<br>
  16. <input type="password" name="password"><br><br>
  17. <input type="submit" value="Log in">
  18. <a href="./register.php">Register</a>
  19. </form>
  20. <p></p><p></p>
  21. <p><small>Netsim was created by
  22. <a href="https://erinn.io/">Erinn Atwater</a> based on a project with
  23. <a href="https://cs.uwaterloo.ca/~cbocovic">Cecylia Bocovich</a>.
  24. Some device images were designed by
  25. <a href="http://www.flaticon.com/authors/madebyoliver">madebyoliver</a> from Flaticon.
  26. View Netsim's source code on <a href="https://github.com/errorinn/netsim">Github</a>, or tip the creator on <a href="https://www.patreon.com/errorinn">Patreon</a>.
  27. </small></p>