Zaktualizuj 'nowe_konto.php'
This commit is contained in:
parent
dbb80ef4da
commit
c44fe6c543
@ -2,20 +2,6 @@
|
|||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<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
|
<?php
|
||||||
|
|
||||||
include 'sql/db_login.php';
|
include 'sql/db_login.php';
|
||||||
@ -56,10 +42,27 @@ if (isset($_POST['register']))
|
|||||||
|
|
||||||
echo "Konto zostało utworzone! Czekaj na akceptację.";
|
echo "Konto zostało utworzone! Czekaj na akceptację.";
|
||||||
}
|
}
|
||||||
else echo "Hasła nie są takie same!";
|
else { $error = "Hasła nie są takie same!"; }
|
||||||
}
|
} else { $error = "Podany login jest już zajęty."; }
|
||||||
else echo "Podany login jest już zajęty.";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mysql_close();
|
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>
|
Loading…
Reference in New Issue
Block a user