diff --git a/assets/css/style.css b/assets/css/style.css
index 07c290b..adb892d 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -599,13 +599,18 @@ label{
color: #3c3c3c;
}
-.post .text {
+.container-search .text {
font-size: 14px;
color: #737272ee;
line-height: 1.5;
margin-top: 28px;
height: 88px;
- overflow: hidden;
+ overflow: hidden;
+}
+
+.container-post .text {
+ margin-top: 30px;
+ overflow-x: auto;
}
.credit {
diff --git a/assets/html/legal.t b/assets/css/t.html
similarity index 100%
rename from assets/html/legal.t
rename to assets/css/t.html
diff --git a/assets/html/post.html b/assets/html/post.html
index f39d785..e5971f2 100644
--- a/assets/html/post.html
+++ b/assets/html/post.html
@@ -20,9 +20,9 @@
-
+
-
+
Auteur
@@ -83,7 +83,6 @@
-
diff --git a/assets/html/search.html b/assets/html/search.html
index 0b675cc..b7d6ea2 100644
--- a/assets/html/search.html
+++ b/assets/html/search.html
@@ -27,9 +27,9 @@
-
+
-
+
diff --git a/assets/php/Tags/UserEditor.php b/assets/php/Tags/UserEditor.php
index a4f8ecc..fcea113 100644
--- a/assets/php/Tags/UserEditor.php
+++ b/assets/php/Tags/UserEditor.php
@@ -33,12 +33,14 @@ class UserEditor extends \App\Tags\Tag {
$input = $doc->createElement("input");
$input->setAttribute("value", $user->getUsername());
$input->setAttribute("name", "username");
+ $input->setAttribute("placeholder", "Nom d'utilisateur");
$el->parentNode->insertBefore($input, $el);
break;
case 'job':
$input = $doc->createElement("input");
$input->setAttribute("value", $user->getJob());
$input->setAttribute("name", "job");
+ $input->setAttribute("placeholder", "Job");
$el->parentNode->insertBefore($input, $el);
break;
default: