Zaktualizuj 'index.php'
This commit is contained in:
parent
35c799f373
commit
ff997c0200
34
index.php
34
index.php
@ -1,6 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
|
?>
|
||||||
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
|
<?php
|
||||||
|
|
||||||
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");
|
||||||
@ -8,12 +12,6 @@ mysql_select_db("$db_name");
|
|||||||
|
|
||||||
$db = mysqli_connect("$db_servername", "$db_login_tasks", "$db_password_tasks", "$db_name_tasks");
|
$db = mysqli_connect("$db_servername", "$db_login_tasks", "$db_password_tasks", "$db_name_tasks");
|
||||||
|
|
||||||
?>
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
|
||||||
|
|
||||||
<?php
|
|
||||||
|
|
||||||
function filter($variable)
|
function filter($variable)
|
||||||
{
|
{
|
||||||
if(get_magic_quotes_gpc())
|
if(get_magic_quotes_gpc())
|
||||||
@ -112,17 +110,19 @@ if ($_SESSION['zalogowany']==true)
|
|||||||
|
|
||||||
if ($_SESSION['zalogowany']==false): ?>
|
if ($_SESSION['zalogowany']==false): ?>
|
||||||
|
|
||||||
<form method="POST" action="index.php">
|
<div class="loginbox">
|
||||||
<b>Login:</b> <input type="text" name="login"><br>
|
<img src="img/avatar.png" class="avatar">
|
||||||
<b>Hasło:</b> <input type="password" name="password"><br>
|
<h1>Zaloguj się</h1>
|
||||||
<input type="submit" value="Zaloguj" name="loguj">
|
<form method="POST" action="index.php">
|
||||||
</form>
|
<p>Login</p>
|
||||||
|
<input type="text" name="login" placeholder="Wpisz swój login" required>
|
||||||
---------------------------------------------------
|
<p>Hasło</p>
|
||||||
|
<input type="password" name="password" placeholder="Wpisz swoje hasło" required>
|
||||||
<form method="POST" action="nowe_konto.php">
|
<input type="submit" name="loguj" value="Zaloguj">
|
||||||
<input type="submit" value="Rejestracja nowego konta">
|
<a href="nowe_konto.php">Zarejestruj się</a>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
endif;
|
endif;
|
||||||
|
Loading…
Reference in New Issue
Block a user