index.html 664 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta name="theme-color" content="#14171c">
  7. <title>Home Assistant</title>
  8. <style></style>
  9. </head>
  10. <body>
  11. <div id="loginPage">
  12. <form>
  13. <h1>Login</h1>
  14. <label>Email:
  15. <input type="email" id="loginPageEmail" required>
  16. </label>
  17. <label>Password:
  18. <input type="password" id="loginPagePassword" required>
  19. </label>
  20. <button>Log In</button>
  21. </form>
  22. </div>
  23. <script></script>
  24. </body>
  25. </html>