index.html 765 B

123456789101112131415161718192021222324
  1. <html><head><title>Athena http server</title></head><body>
  2. <h1>Athena http server</h1>
  3. <p>Welcome to Athena http server.</p>
  4. <h2>Server status</h2>
  5. <p><a href="/graph">here</a></p>
  6. <h2>Add account(login server only)</h2>
  7. <form action="/account" method="GET">
  8. <table border>
  9. <tr><th>User ID</th><td><input type="text" name="userid"></td></tr>
  10. <tr><th>Password</th><td><input type="password" name="passwd" ></td></tr>
  11. <tr><th>Gender</th><td><input type="radio" name="gender" value="male">Male <input type="radio" name="gender" value="female">Female</td></tr>
  12. <tr><td colspan="2"><input type="submit" name="add" value="Make Account"><input type="submit" name="check" value="Check UserID"></td></tr>
  13. </table>
  14. </form>
  15. </body></html>