Upload files to "old_progress"

This commit is contained in:
2026-03-16 15:09:56 +01:00
commit ec18c5be93
5 changed files with 688 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
session_start();
include('mysql_config.php');
?>
<h1>prihlasovaci formular</h1>
<form method="POST" action="login_process.php">
<label>email:</label> <input type="text" name="uemail">
<label>heslo:</label> <input type="password" name="upass"><br><br>
<input type="checkbox" name="urem"> Remember me <br><br>
<input type="submit" value="Login" name="login">
</form>
<?php
if (isset($_SESSION['message'])){
echo $_SESSION['message'];
}
unset($_SESSION['message']);
?>