Zaktualizuj 'index.php'
This commit is contained in:
parent
c44fe6c543
commit
f148800b80
@ -36,7 +36,9 @@ if (isset($_POST['loguj']))
|
||||
$_SESSION['zalogowany'] = true;
|
||||
$_SESSION['login'] = strtolower($login);
|
||||
}
|
||||
else { echo "Wpisano zle dane lub konto nieaktywne."; }
|
||||
else if (mysql_num_rows(mysql_query("SELECT * FROM `users` WHERE `user_login`='$login' && `user_pass`='$password' && `aktywne`='0'")) > 0)
|
||||
{ $error = "Konto nieaktywne.";}
|
||||
else { $error = "Zły login lub hasło"; }
|
||||
}
|
||||
|
||||
if ($_SESSION['zalogowany']==true)
|
||||
@ -120,6 +122,7 @@ if ($_SESSION['zalogowany']==false): ?>
|
||||
<p>Hasło</p>
|
||||
<input type="password" name="password" placeholder="Wpisz swoje hasło" required>
|
||||
<input type="submit" name="loguj" value="Zaloguj">
|
||||
<h2><?php echo $error; ?></h2>
|
||||
<a href="nowe_konto.php">Zarejestruj się</a>
|
||||
</form>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user