Zaktualizuj 'nowe_konto.php'

This commit is contained in:
Krystian Rzepa 2018-12-30 22:54:00 +00:00
parent c756d72ce4
commit 39e9ddbbac

View File

@ -1,9 +1,12 @@
<html>
<head>
<title>Rejestracja konta</title> <title>Rejestracja konta</title>
<link rel="stylesheet" type="text/css" href="style.css"> <link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<?php <?php
$eerror = "";
include 'sql/db_login.php'; include 'sql/db_login.php';
mysql_connect("$db_servername", "$db_login", "$db_password"); mysql_connect("$db_servername", "$db_login", "$db_password");
@ -40,7 +43,7 @@ if (isset($_POST['register']))
PRIMARY KEY (`ID`) PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin2 AUTO_INCREMENT=0"); ) 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 = "Hasła nie są takie same!"; }
} else { $error = "Podany login jest już zajęty."; } } else { $error = "Podany login jest już zajęty."; }
@ -49,9 +52,6 @@ if (isset($_POST['register']))
mysql_close(); mysql_close();
?> ?>
<title>Rejestracja konta</title>
<link rel="stylesheet" type="text/css" href="style.css">
<div class="registerbox"> <div class="registerbox">
<img src="img/avatar.png" class="avatar"> <img src="img/avatar.png" class="avatar">
<h1>Rejestracja</h1> <h1>Rejestracja</h1>
@ -65,4 +65,5 @@ mysql_close();
<input type="submit" name="register" value="Rejestruj się"> <input type="submit" name="register" value="Rejestruj się">
</form> </form>
<h2><?php echo $error; ?></h2> <h2><?php echo $error; ?></h2>
</div> </div>
</html>