Zaktualizuj 'index.php'

This commit is contained in:
Krystian Rzepa 2018-12-30 22:53:11 +00:00
parent f148800b80
commit c756d72ce4

277
index.php
View File

@ -1,9 +1,182 @@
<?php
session_start();
?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ToDoList</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
.header {
overflow: hidden;
background-color: #000;
padding: 20px 10px;
}
.header a {
float: left;
color: #ddd;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header a.active {
background-color: #fb2525;
color: white;
}
.header a.active:hover {
cursor: pointer;
background: #ffc107;
color: #000;
}
.header-right {
float: right;
}
.addform {
overflow: hidden;
background-color: black;
padding: 0px 10px;
}
.addform input {
width: 100%;
margin-bottom: 20px;
}
.addform input[type="text"] {
border: none;
border-bottom: 1px solid #fff;
background: transparent;
outline: none;
height: 40px;
color: #fff;
font-size: 16px;
text-align: center;
}
.addform input[type="submit"] {
border: none;
outline: none;
height: 40px;
background: #fb2525;
color: #fff;
font-size: 18px;
border-radius: 20px;
}
.addform input[type="submit"]:hover {
cursor: pointer;
background: #ffc107;
color: #000;
}
.done-button {
display: inline-block;
font-size: 0.8em;
background-color: #d9dfe1;
color: #363639;
padding: 2px 4px;
border: 0;
opacity: 0.4;
}
.delete-button {
display: inline-block;
font-size: 0.8em;
background-color: #FF6666;
color: #CC0000;
padding: 2px 4px;
border: 0;
opacity: 0.4;
}
.todo {
left: 10%;
position: absolute;
background-color: #fff;
margin: 20px auto;
width: 100%;
max-width: 500px;
padding: 20px;
border-radius: 4px;
box-shadow: 3px 3px 0 rgba(0, 0, 0, .1);
box-sizing: border-box;
}
.done {
right: 10%;
position: absolute;
background-color: #fff;
margin: 20px auto;
width: 100%;
max-width: 500px;
padding: 20px;
border-radius: 4px;
box-shadow: 3px 3px 0 rgba(0, 0, 0, .1);
box-sizing: border-box;
}
.tasks {
margin:0;
padding0;
list-style-type: none;
}
.tasks li {
border:0;
border-bottom:1px dashed #ccc;
padding: 15px 0;
}
@media screen and (max-width: 999px) {
.todo {
position: relative;
left: 0.5%;
top: 5%;
background-color: #fff;
margin: auto;
width: 90%;
max-width: 500px;
padding: 20px;
border-radius: 4px;
box-shadow: 3px 3px 0 rgba(0, 0, 0, .1);
box-sizing: border-box;
}
.done {
position: relative;
left: 0.5%;
top: 5%;
background-color: #fff;
margin: 20px auto;
width: 90%;
max-width: 500px;
padding: 20px;
border-radius: 4px;
box-shadow: 3px 3px 0 rgba(0, 0, 0, .1);
box-sizing: border-box;
}
}
</style>
</head>
<?php
include 'sql/db_login.php';
@ -41,72 +214,65 @@ if (isset($_POST['loguj']))
else { $error = "Zły login lub hasło"; }
}
if ($_SESSION['zalogowany']==true)
{
echo "Zalogowano jako <b>".$_SESSION['login']."</b>"; echo '<a href="?wyloguj=1"> [Wyloguj]</a>';
?>
<form method="POST" action="add.php">
<input type="text" name="task" class="task_input" required>
<input type="submit" value="Dodaj zadanie" name="submit">
</form>
<div class="header">
<a class="logo">ToDoList</a>
<div class="header-right">
<a>Zalogowano jako <b><?php echo $_SESSION['login']; ?></b></a>
<a class="active" href="?wyloguj=1">Wyloguj</a>
</div>
</div>
<div class="addform">
<form method="POST" action="add.php">
<input type="text" name="task" class="task_input" placeholder="Nowe zadanie" required>
<input type="submit" value="Dodaj" name="submit">
</form>
</div>
<?php
$login = $_SESSION['login'];
$query = "SELECT * FROM `tasks_$login` WHERE done = 0";
$tasks = mysqli_query($db, $query);
$query_done = "SELECT * FROM `tasks_$login` WHERE done = 1";
$tasks_done = mysqli_query($db, $query_done);
?>
<table>Do zrobienia
<thead>
<tr>
<td>Nr</td>
<td>Zadanie</td>
<td>Akcja</td>
</tr>
</thead>
<tbody>
<?php $i=1; while ($row = mysqli_fetch_array($tasks)) { ?>
<tr>
<td><?php echo $i; ?></td>
<td class="task"><?php echo $row['task']; ?></td>
<td class="action">
<a href="delete.php?del_task=<?php echo $row['ID'];?>">x</a>
<a href="mark.php?mark_task=<?php echo $row['ID'];?>">v</a>
</td>
</tr>
<?php i++; } ?>
<div class="todo">
<h4 class="todo-header">Do zrobienia</h4>
<ul class="tasks">
<?php while ($row = mysqli_fetch_array($tasks)) { ?>
<li> <span class="task"><?php echo $row['task']; ?>
<a class="done-button" href="mark.php?mark_task=<?php echo $row['ID'];?>">Zrobione</a>
<a class="delete-button" href="delete.php?del_task=<?php echo $row['ID'];?>">Usuń</a>
</span> </li>
<?php } ?>
</ul>
</div>
<div class="done">
<h4 class="todo-header">Zrobione</h4>
<ul class="tasks">
<?php $i=1; while ($row = mysqli_fetch_array($tasks_done)) { ?>
<li> <span class="task"><?php echo $row['task']; ?>
<a class="delete-button" href="delete.php?del_task=<?php echo $row['ID'];?>">Usuń</a>
</span> </li>
<?php } ?>
</ul>
</tbody>
</table>
<table>Zrobione
<thead>
<tr>
<td>Nr</td>
<td>Zadanie</td>
<td>Akcja</td>
</tr>
</thead>
<tbody>
<?php $i=1; while ($row = mysqli_fetch_array($tasks_done)) { ?>
<tr>
<td><?php echo $i; ?></td>
<td class="task"><?php echo $row['task']; ?></td>
<td class="action">
<a href="delete.php?del_task=<?php echo $row['ID'];?>">x</a>
</td>
</tr>
<?php $i++; } ?>
</tbody>
</table>
</div>
<?php
}
@ -115,14 +281,14 @@ if ($_SESSION['zalogowany']==false): ?>
<div class="loginbox">
<img src="img/avatar.png" class="avatar">
<h1>Zaloguj się</h1>
<h1>Logowanie</h1>
<form method="POST" action="index.php">
<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>
<input type="submit" name="loguj" value="Zaloguj">
<h2><?php echo $error; ?></h2>
<h2><?php echo $error; ?></h2>
<a href="nowe_konto.php">Zarejestruj się</a>
</form>
@ -131,4 +297,5 @@ if ($_SESSION['zalogowany']==false): ?>
<?php
endif;
mysql_close();
?>
?>
</html>