login.html 740 B

12345678910111213141516171819202122232425262728
  1. <html>
  2. <head><title>lwIP - A Lightweight TCP/IP Stack</title></head>
  3. <body bgcolor="white" text="black">
  4. <table width="100%">
  5. <tr valign="top">
  6. <td width="80">
  7. <a href="http://www.sics.se/"><img src="/img/sics.gif" border="0" alt="SICS logo" title="SICS logo"/></a>
  8. </td>
  9. <td width="500">
  10. <h1>Login</h1>
  11. <form name="login" action="login.cgi" method="post">
  12. <div>
  13. <label><b>Username</b></label>
  14. <input type="text" placeholder="Enter Username" name="user" required>
  15. <label><b>Password</b></label>
  16. <input type="password" placeholder="Enter Password" name="pass" required>
  17. <button type="submit">Login</button>
  18. </div>
  19. </form>
  20. </td>
  21. <td>
  22. &nbsp;
  23. </td>
  24. </tr>
  25. </table>
  26. </body>
  27. </html>