| 1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>BIM</title>
- </head>
- <body>
- <form method="post" accept-charset="UTF-8" action="auth.php">
-
- <h3><label for="id">Username</label></h3>
- <input id="id" type="text" name="id">
-
- <h3><label for="password">Password</label></h3>
- <input id="password" type="password" name="password">
-
- <input type="submit" value="login">
-
- {% if error_message is defined %}
- <p>{{ error_message }}</p>
- {% endif %}
- </form>
-
- </body>
- </html>
|