Zaktualizuj 'nowe_konto.php'

This commit is contained in:
Krystian Rzepa 2018-12-30 19:51:16 +00:00
parent dbb80ef4da
commit c44fe6c543

View File

@ -2,20 +2,6 @@
<link rel="stylesheet" type="text/css" href="style.css">
<div class="registerbox">
<img src="img/avatar.png" class="avatar">
<h1>Rejestracja</h1>
<form method="POST" action="nowe_konto.php">
<p>Login</p>
<input type="text" name="login" placeholder="Wpisz swój login" required>
<p>Hasło</p>
<input type="password" name="haslo1" placeholder="Wpisz swoje hasło" required>
<p>Powtórz hasło</p>
<input type="password" name="haslo2" placeholder="Powtórz hasło" required>
<input type="submit" name="register" value="Rejestruj się">
</form>
</div>
<?php
include 'sql/db_login.php';
@ -56,10 +42,27 @@ if (isset($_POST['register']))
echo "Konto zostało utworzone! Czekaj na akceptację.";
}
else echo "Hasła nie są takie same!";
}
else echo "Podany login jest już zajęty.";
else { $error = "Hasła nie są takie same!"; }
} else { $error = "Podany login jest już zajęty."; }
}
mysql_close();
?>
?>
<title>Rejestracja konta</title>
<link rel="stylesheet" type="text/css" href="style.css">
<div class="registerbox">
<img src="img/avatar.png" class="avatar">
<h1>Rejestracja</h1>
<form method="POST" action="nowe_konto.php">
<p>Login</p>
<input type="text" name="login" placeholder="Wpisz swój login" required>
<p>Hasło</p>
<input type="password" name="haslo1" placeholder="Wpisz swoje hasło" required>
<p>Powtórz hasło</p>
<input type="password" name="haslo2" placeholder="Powtórz hasło" required>
<input type="submit" name="register" value="Rejestruj się">
</form>
<h2><?php echo $error; ?></h2>
</div>