login.html 541 B

123456789101112131415161718
  1. <!DOCTYPE HTML>
  2. <html lang="en-US">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Chat | Login</title>
  6. <link rel="stylesheet" href="https://dl.dropboxusercontent.com/u/135304375/cdn/css/brook.chat.css" />
  7. </head>
  8. <span class="error">%s</span>
  9. <div id="login">
  10. <form action="http://localhost/cgi-bin/chat.bf/login" method="post">
  11. <p>Please enter your name to continue.</p>
  12. <label for="name">Name:</label>
  13. <input type="text" name="name" id="name" />
  14. <input type="submit" name="enter" id="enter" value="Enter" />
  15. </form>
  16. </div>
  17. </body>
  18. </html>