1
0

signin.html.twig 632 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>BIM</title>
  5. </head>
  6. <body>
  7. <form method="post" accept-charset="UTF-8" action="../auth.php">
  8. <h3><label for="id">Username</label></h3>
  9. <input id="id" type="text" name="id">
  10. <h3><label for="password">Password</label></h3>
  11. <input id="password" type="password" name="password">
  12. <input type="submit" value="login">
  13. {% if session.message is defined %}
  14. <p>{{ session.message }}</p>
  15. {% endif %}
  16. </form>
  17. </body>
  18. </html>