index.html 862 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
  5. <title><%= htmlWebpackPlugin.options.title %></title>
  6. </head>
  7. <body>
  8. <section>
  9. <h1><%= htmlWebpackPlugin.options.title %></h1>
  10. <form id="login">
  11. <fieldset>
  12. <legend>Login</legend>
  13. <input type="text" id="alias" placeholder="Alias">
  14. <input type="password" id="pass" placeholder="Password">
  15. <input type="submit" value="Login">
  16. <input id="register" type="button" value="Register">
  17. </fieldset>
  18. </form>
  19. <form id="items">
  20. <fieldset>
  21. <legend>Items</legend>
  22. <input id="name" placeholder="name"><br>
  23. <input id="price" placeholder="0"><br>
  24. </fieldset>
  25. </form>
  26. </section>
  27. </body>
  28. </html>