Upload files to 'projektpp'

This commit is contained in:
Mariusz Łopata 2021-01-08 13:26:29 +01:00
parent 289e706cd1
commit 36fa39bbe4
4 changed files with 555 additions and 0 deletions

76
projektpp/login.php Normal file
View File

@ -0,0 +1,76 @@
<?php
session_start();
if ((isset($_SESSION['zalogowany1'])) && ($_SESSION['zalogowany1']==true))
{
header('Location: admin.php');
exit();
}
if ((isset($_SESSION['zalogowany2'])) && ($_SESSION['zalogowany2']==true))
{
header('Location: ucz.php');
exit();
}
if ((isset($_SESSION['zalogowany3'])) && ($_SESSION['zalogowany3']==true))
{
header('Location: klient.php');
exit();
}
?>
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8" />
<title>GymFit </title>
<meta name="description" content="Serwis poświęcony siłowni. />
<meta name="keywords" content="gym, fit, gymfit" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="container">
<div id="menu">
<div id="logo">
<img src="png/logo.png" />
</div>
<div id="menuP">
<div class="option"><a href="index.html">Strona główna</a></div>
<div class="option"><a href="login.php">Zaloguj</a></div>
<div class="option"><a href="rejestracja.php">Dołącz</a></div>
<div class="option"><a href="terminaz.html">Terminaż</a></div>
<div class="option"><a href="kontakt.html">Kontakt</a></div>
</div>
<div style="clear:both;"></div>
</div>
<div id="content">
<form action="zaloguj.php" method="post">
Login: <br /> <input type="text" name="login" /> <br />
Hasło: <br /> <input type="password" name="haslo" /> <br /><br />
<input type="submit" value="Zaloguj się" />
</form>
<?php
if(isset($_SESSION['blad'])) echo $_SESSION['blad'];
?>
</div>
<div id="footer">
GymFit. Strona w sieci od 2021r. &copy; Wszelkie prawa zastrzeżone
</div>
</div>
</body>
</html>

9
projektpp/logout.php Normal file
View File

@ -0,0 +1,9 @@
<?php
session_start();
session_unset();
header('Location: index.html');
?>

324
projektpp/rejestracja.php Normal file
View File

@ -0,0 +1,324 @@
<?php
session_start();
if (isset($_POST['email']))
{
//Udana walidacja? Załóżmy, że tak!
$wszystko_OK=true;
//Sprawdź poprawność nickname'a
$nick = $_POST['nick'];
//Sprawdzenie długości nicka
if ((strlen($nick)<3) || (strlen($nick)>20))
{
$wszystko_OK=false;
$_SESSION['e_nick']="Nick musi posiadać od 3 do 20 znaków!";
}
if (ctype_alnum($nick)==false)
{
$wszystko_OK=false;
$_SESSION['e_nick']="Nick może składać się tylko z liter i cyfr (bez polskich znaków)";
}
$imie = $_POST['imie'];
$nazwisko = $_POST['nazwisko'];
// Sprawdź poprawność adresu email
$email = $_POST['email'];
$emailB = filter_var($email, FILTER_SANITIZE_EMAIL);
if ((filter_var($emailB, FILTER_VALIDATE_EMAIL)==false) || ($emailB!=$email))
{
$wszystko_OK=false;
$_SESSION['e_email']="Podaj poprawny adres e-mail!";
}
//Sprawdź poprawność hasła
$haslo1 = $_POST['haslo1'];
$haslo2 = $_POST['haslo2'];
if ((strlen($haslo1)<8) || (strlen($haslo1)>20))
{
$wszystko_OK=false;
$_SESSION['e_haslo']="Hasło musi posiadać od 8 do 20 znaków!";
}
if ($haslo1!=$haslo2)
{
$wszystko_OK=false;
$_SESSION['e_haslo']="Podane hasła nie są identyczne!";
}
$haslo_hash = password_hash($haslo1, PASSWORD_DEFAULT);
//Czy zaakceptowano regulamin?
if (!isset($_POST['regulamin']))
{
$wszystko_OK=false;
$_SESSION['e_regulamin']="Potwierdź akceptację regulaminu!";
}
//Bot or not? Oto jest pytanie!
$sekret = "6LdF4iEaAAAAAF58_FmfKBBTpM0IVdGphVyTMGAl";
$sprawdz = file_get_contents('https://www.google.com/recaptcha/api/siteverify?secret='.$sekret.'&response='.$_POST['g-recaptcha-response']);
$odpowiedz = json_decode($sprawdz);
if ($odpowiedz->success==false)
{
$wszystko_OK=false;
$_SESSION['e_bot']="Potwierdź, że nie jesteś botem!";
}
//Zapamiętaj wprowadzone dane
$_SESSION['fr_nick'] = $nick;
$_SESSION['fr_imie'] = $imie;
$_SESSION['fr_nazwisko'] = $nazwisko;
$_SESSION['fr_email'] = $email;
$_SESSION['fr_haslo1'] = $haslo1;
$_SESSION['fr_haslo2'] = $haslo2;
if (isset($_POST['regulamin'])) $_SESSION['fr_regulamin'] = true;
require_once "connect.php";
mysqli_report(MYSQLI_REPORT_STRICT);
try
{
$polaczenie = new mysqli($host, $db_user, $db_password, $db_name);
if ($polaczenie->connect_errno!=0)
{
throw new Exception(mysqli_connect_errno());
}
else
{
//Czy email już istnieje?
$rezultat = $polaczenie->query("SELECT id FROM uzytkownicy WHERE email='$email'");
if (!$rezultat) throw new Exception($polaczenie->error);
$ile_takich_maili = $rezultat->num_rows;
if($ile_takich_maili>0)
{
$wszystko_OK=false;
$_SESSION['e_email']="Istnieje już konto przypisane do tego adresu e-mail!";
}
//Czy nick jest już zarezerwowany?
$rezultat = $polaczenie->query("SELECT id FROM uzytkownicy WHERE user='$nick'");
if (!$rezultat) throw new Exception($polaczenie->error);
$ile_takich_nickow = $rezultat->num_rows;
if($ile_takich_nickow>0)
{
$wszystko_OK=false;
$_SESSION['e_nick']="Istnieje już gracz o takim nicku! Wybierz inny.";
}
if ($wszystko_OK==true)
{
//Hurra, wszystkie testy zaliczone, dodajemy gracza do bazy
if ($polaczenie->query("INSERT INTO uzytkownicy VALUES (NULL, '$nick', '$imie', '$nazwisko', '$haslo_hash', '$email', 3, 100, 100, 14)"))
{
$_SESSION['udanarejestracja']=true;
header('Location: witamy.php');
}
else
{
throw new Exception($polaczenie->error);
}
}
$polaczenie->close();
}
}
catch(Exception $e)
{
echo '<span style="color:red;">Błąd serwera! Przepraszamy za niedogodności i prosimy o rejestrację w innym terminie!</span>';
echo '<br />Informacja developerska: '.$e;
}
}
?>
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8" />
<title>GymFit </title>
<meta name="description" content="Serwis poświęcony siłowni. />
<meta name="keywords" content="gym, fit, gymfit" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,900&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<script src='https://www.google.com/recaptcha/api.js'></script>
<style>
.error
{
color:red;
margin-top: 10px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div id="container">
<div id="menu">
<div id="logo">
<img src="png/logo.png" />
</div>
<div id="menuP">
<div class="option"><a href="index.html">Strona główna</a></div>
<div class="option"><a href="login.php">Zaloguj</a></div>
<div class="option"><a href="rejestracja.php">Dołącz</a></div>
<div class="option"><a href="terminaz.html">Terminaż</a></div>
<div class="option"><a href="kontakt.html">Kontakt</a></div>
</div>
<div style="clear:both;"></div>
</div>
<div id="content">
<form method="post">
Nickname: <br /> <input type="text" value="<?php
if (isset($_SESSION['fr_nick']))
{
echo $_SESSION['fr_nick'];
unset($_SESSION['fr_nick']);
}
?>" name="nick" /><br />
<?php
if (isset($_SESSION['e_nick']))
{
echo '<div class="error">'.$_SESSION['e_nick'].'</div>';
unset($_SESSION['e_nick']);
}
?>
Imię: <br /> <input type="text" value="<?php
if (isset($_SESSION['fr_imie']))
{
echo $_SESSION['fr_imie'];
unset($_SESSION['fr_imie']);
}
?>" name="imie" /><br />
<?php
if (isset($_SESSION['e_imie']))
{
echo '<div class="error">'.$_SESSION['e_imie'].'</div>';
unset($_SESSION['e_imie']);
}
?>
Nazwisko: <br /> <input type="text" value="<?php
if (isset($_SESSION['fr_nazwisko']))
{
echo $_SESSION['fr_nazwisko'];
unset($_SESSION['fr_nazwisko']);
}
?>" name="nazwisko" /><br />
<?php
if (isset($_SESSION['e_nazwisko']))
{
echo '<div class="error">'.$_SESSION['e_nazwisko'].'</div>';
unset($_SESSION['e_nazwisko']);
}
?>
E-mail: <br /> <input type="text" value="<?php
if (isset($_SESSION['fr_email']))
{
echo $_SESSION['fr_email'];
unset($_SESSION['fr_email']);
}
?>" name="email" /><br />
<?php
if (isset($_SESSION['e_email']))
{
echo '<div class="error">'.$_SESSION['e_email'].'</div>';
unset($_SESSION['e_email']);
}
?>
Twoje hasło: <br /> <input type="password" value="<?php
if (isset($_SESSION['fr_haslo1']))
{
echo $_SESSION['fr_haslo1'];
unset($_SESSION['fr_haslo1']);
}
?>" name="haslo1" /><br />
<?php
if (isset($_SESSION['e_haslo']))
{
echo '<div class="error">'.$_SESSION['e_haslo'].'</div>';
unset($_SESSION['e_haslo']);
}
?>
Powtórz hasło: <br /> <input type="password" value="<?php
if (isset($_SESSION['fr_haslo2']))
{
echo $_SESSION['fr_haslo2'];
unset($_SESSION['fr_haslo2']);
}
?>" name="haslo2" /><br />
<label>
<input type="checkbox" name="regulamin" <?php
if (isset($_SESSION['fr_regulamin']))
{
echo "checked";
unset($_SESSION['fr_regulamin']);
}
?>/> <div Akceptuję class="1"><a href="terminaz.html">Regulamin</a></div>
</label>
<?php
if (isset($_SESSION['e_regulamin']))
{
echo '<div class="error">'.$_SESSION['e_regulamin'].'</div>';
unset($_SESSION['e_regulamin']);
}
?>
<div class="g-recaptcha" data-sitekey="6LdF4iEaAAAAALA3XQxuys_gNW3GA5Q0VWpTh4Be"></div>
<?php
if (isset($_SESSION['e_bot']))
{
echo '<div class="error">'.$_SESSION['e_bot'].'</div>';
unset($_SESSION['e_bot']);
}
?>
<br />
<input type="submit" value="Zarejestruj się" />
</form>
</div>
<div id="footer">
GymFit. Strona w sieci od 2021r. &copy; Wszelkie prawa zastrzeżone
</div>
</div>
</body>
</html>

146
projektpp/style.css Normal file
View File

@ -0,0 +1,146 @@
body
{
background: url(png/tlo.png);
font-family: 'Lato', sans-serif;
}
#container
{
width: 1000px;
margin-left: auto;
margin-right: auto;
}
#menu
{
background-color: #303030;
color: #ffffff;
padding: 10px;
}
#logo
{
float:left;
width: 178px;
text-align: center;
}
#menuP
{
float: left;
padding: 20px;
width: 758px;
font-size: 16px;
text-align: justify;
}
#content
{
float: left;
padding: 40px;
width: 920px;
background-color: #dedede;
min-height: 580px;
text-align: justify;
}
#footer
{
clear: both;
color: white;
text-align: center;
padding: 20px;
font-size: 18px;
}
#contentl
{
float: left;
width: 440px;
}
#contentp
{
float:right;
}
#lok
{
float:left;
padding-top: 5px;
padding-bottom: 20px;
width: 50px;
}
#obs
{
float:left;
width: 40px;
sline-height: 2cm;
}
#sek
{
float:left;
width: 40px;
sline-height: 2cm;
}
.option
{
float: left;
min-width: 50px;
height: 25px;
font-size: 18px;
padding: 10px;
border-right: 2px dotted #444444;
border-left: 2px dotted #444444;
opacity: 0.8;
}
a:link
{
color: white;
text-decoration: none;
}
a:visited
{
color: white;
text-decoration: none;
}
a:hover
{
color: white;
text-decoration: none;
}
.option:hover
{
background-color: #000000;
cursor: pointer;
}
.bigtitle
{
font-size: 32px;
font-weight: 900;
letter-spacing: 2px;
}
.dottedline
{
height: 5px;
margin-top: 10px;
margin-bottom: 20px;
border-bottom: 2px dotted #444444;
}
.error
{
color:red;
margin-top: 10px;
margin-bottom: 10px;
}