Zaktualizuj 'nowe_konto.php'
This commit is contained in:
parent
c756d72ce4
commit
39e9ddbbac
@ -1,9 +1,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Rejestracja konta</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
|
||||
<?php
|
||||
|
||||
$eerror = "";
|
||||
include 'sql/db_login.php';
|
||||
|
||||
mysql_connect("$db_servername", "$db_login", "$db_password");
|
||||
@ -40,7 +43,7 @@ if (isset($_POST['register']))
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin2 AUTO_INCREMENT=0");
|
||||
|
||||
echo "Konto zostało utworzone! Czekaj na akceptację.";
|
||||
$error = "Konto zostało utworzone! Czekaj na akceptację.";
|
||||
}
|
||||
else { $error = "Hasła nie są takie same!"; }
|
||||
} else { $error = "Podany login jest już zajęty."; }
|
||||
@ -49,9 +52,6 @@ if (isset($_POST['register']))
|
||||
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>
|
||||
@ -66,3 +66,4 @@ mysql_close();
|
||||
</form>
|
||||
<h2><?php echo $error; ?></h2>
|
||||
</div>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user