register.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <meta name="description" content="A social network for developers who practice Test Driven Development." />
  6. <meta name="keywords" content="tdd network test driven development clean code" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8. <meta name="author" content="Justin Gilman" />
  9. <title>TDD Network - Register</title>
  10. <meta property="og:title" content="TDD Network" />
  11. <meta
  12. property="og:description"
  13. content="A social network for developers who practice Test Driven Development."
  14. />
  15. <link rel="stylesheet" type="text/css" href="css/main.css" />
  16. </head>
  17. <body>
  18. <header>
  19. <nav>
  20. <ul>
  21. <li><a href="https://tddnetwork.org/">Home</a></li>
  22. <li><a href="developers.html">Developers</a></li>
  23. <li><a href="projects.html">Projects</a></li>
  24. <li><a href="katas.html">Katas</a></li>
  25. </ul>
  26. </nav>
  27. <div>
  28. <a href="register.html">Register</a>
  29. <a href="#signin">Log In</a>
  30. </div>
  31. </header>
  32. <main class="content">
  33. <section>
  34. <form method="post" action="/auth/register">
  35. <input type="username" name="username" id="username" placeholder="username" />
  36. <input type="password" name="password" id="password" placeholder="password" />
  37. <input type="submit" value="Register" />
  38. </form>
  39. </section>
  40. </main>
  41. </body>
  42. </html>