From aa11550b9e05f9a5f9a091bc524cabf1c3a8bda0 Mon Sep 17 00:00:00 2001 From: Mateja Date: Sun, 4 Oct 2020 15:58:27 +0200 Subject: Release 0.1 --- admin.php | 8 +++++--- edit.php | 5 +++++ index.php | 6 +++--- reservation.php | 8 +++++--- style.css | 10 ++++++---- 5 files changed, 24 insertions(+), 13 deletions(-) diff --git a/admin.php b/admin.php index ee50227..17da123 100644 --- a/admin.php +++ b/admin.php @@ -14,14 +14,16 @@ session_start();
operatorEmail = clear_input($recvData->operatorEmail); $recvData->operatorPhone = clear_input($recvData->operatorPhone); $recvData->qso = clear_input($recvData->qso); + + $recvData->$specialCall = strtoupper($recvData->$specialCall); + $recvData->$modes = strtoupper($recvData->$modes); + $recvData->$operatorCall = strtoupper($recvData->$operatorCall); + } catch (Exception $e) { die("Can't decode JSON!"); } diff --git a/index.php b/index.php index 39a38ab..5262804 100644 --- a/index.php +++ b/index.php @@ -17,10 +17,10 @@ session_start(); Logout'; - echo 'Administration'; + echo 'Administration'; + echo 'Logout'; } else { - echo 'Login'; + echo 'Login'; } ?> diff --git a/reservation.php b/reservation.php index d557c1e..689f74e 100644 --- a/reservation.php +++ b/reservation.php @@ -14,14 +14,16 @@ session_start();
diff --git a/style.css b/style.css index ed88e24..7244b63 100644 --- a/style.css +++ b/style.css @@ -79,11 +79,13 @@ table { width: 100%; } -thead { - background-color: black; +thead th { color: white; - /*color: black;*/ - /*background-color: #ccc;*/ + background-color: black; + border: 1px solid #ccc; + background-clip: padding-box; + position: sticky; + top: 0; } td, th { -- cgit v1.2.3