| 12345678910111213141516171819202122232425262728293031 |
- <?php
- session_start();
- if ( !isset($_SESSION['user']) )
- {
- header('Location: signin.php');
- exit();
- }
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Change password</title>
- </head>
- <body>
- <h1>Change password</h1>
- <form action="changepassword.php" method="post">
- <label for="newpassword">New password</label> <input type="password" id="newpassword" name="newpassword" required>
- <label for="confirmpassword">Confirm password</label> <input type="password" id="confirmpassword" name="confirmpassword" required>
- <input type="submit" value="Change my password">
- </form>
- <p>
- Go back to <a href="welcome.php">Home</a>.
- </p>
- <?php if ( isset($_SESSION['message']) && !empty($_SESSION['message']) ) { ?>
- <section>
- <p><?= $_SESSION['message']; ?></p>
- </section>
- <?php } ?>
- </body>
- </html>
|