Update 5 files

- /html/src/css/style.css
- /html/index.php
- /html/journal.php
- /html/login.php
- /html/upload.php
This commit is contained in:
Jan BELLON 2024-03-07 14:30:37 +00:00
parent 4f261cba2f
commit e9391f8111
5 changed files with 7 additions and 9 deletions

View File

@ -16,7 +16,7 @@ require "../include/functions.php";
<header>
<div class="pancontent">
<div class="athena-container">
<a href="/">
<a href="/" class="athena-link">
<img src="./src/img/athena-mono.png" class="athena">
</a>
</div>

View File

@ -21,7 +21,7 @@ if (filter_var($_GET['article'], FILTER_VALIDATE_INT)) {
<header>
<div class="pancontent">
<div class="athena-container">
<a href="/">
<a href="/" class="athena-link">
<img src="./src/img/athena-mono.png" class="athena">
</a>
</div>
@ -58,7 +58,7 @@ if (filter_var($_GET['article'], FILTER_VALIDATE_INT)) {
$req = $bdd->prepare("SELECT ID, titre, date, auteur FROM articles ORDER BY date DESC");
$req->execute();
$resultat = $req->fetchAll(PDO::FETCH_ASSOC);
$date = new Datetime($row['date']);
if ($resultat) {

View File

@ -45,7 +45,7 @@ if(isset($_POST['username']) && isset($_POST['password'])) {
<header>
<div class="pancontent">
<div class="athena-container">
<a href="/">
<a href="/" class="athena-link">
<img src="./src/img/athena-mono.png" class="athena">
</a>
</div>

View File

@ -46,8 +46,6 @@ a {
}
a:hover {
background-color: var(--dark-background);
border-radius: 10px;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.322);
}
@ -72,8 +70,8 @@ a:hover {
border-radius: 3.5em;
}
.athena:hover {
box-shadow: 0 0 15px rgba(255, 255, 255, 0.322);
.athena-container {
border-radius: 3.5em;
}
.main-title {

View File

@ -46,7 +46,7 @@ if(isset($_POST['titre']) && isset($_FILES['file'])) {
<header>
<div class="pancontent">
<div class="athena-container">
<a href="/">
<a href="/" class="athena-link">
<img src="./src/img/athena-mono.png" class="athena">
</a>
</div>