| 1234567891011121314151617181920212223 |
- <?php
- session_start();
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Signin</title>
- </head>
- <body>
- <h1>Signin</h1>
- <form action="authenticate.php" method="post">
- <label for="login">Login</label> <input type="text" id="login" name="login" required autofocus>
- <label for="password">Password</label> <input type="password" id="password" name="password" required>
- <input type="submit" value="Signin">
- </form>
- <?php if ( isset($_SESSION['message']) && !empty($_SESSION['message']) ) { ?>
- <section>
- <p><?= $_SESSION['message']; ?></p>
- </section>
- <?php } ?>
- </body>
- </html>
|