diff --git a/src/app/components/post-form/post-form.component.css b/src/app/components/post-form/post-form.component.css
index e69de29..5157b40 100644
--- a/src/app/components/post-form/post-form.component.css
+++ b/src/app/components/post-form/post-form.component.css
@@ -0,0 +1,18 @@
+div {
+ margin-top: 2em;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+form {
+ width: 100%;
+ max-width: 50em;
+ display: flex;
+ flex-direction: column;
+ gap:1em;
+}
+
+.send-button {
+ align-self: center;
+}
diff --git a/src/app/components/post-form/post-form.component.html b/src/app/components/post-form/post-form.component.html
index 397f182..b57e603 100644
--- a/src/app/components/post-form/post-form.component.html
+++ b/src/app/components/post-form/post-form.component.html
@@ -1 +1,27 @@
-
- @for (post of posts; track post.id) {
-
+ @if (posts.length) {
+ @for (post of posts; track post.id) {
+
+ }
+ } @else {
+
Aucun post n'a été créé pour l'instant
}
diff --git a/src/app/pages/login/login.component.css b/src/app/pages/login/login.component.css
new file mode 100644
index 0000000..ce9d921
--- /dev/null
+++ b/src/app/pages/login/login.component.css
@@ -0,0 +1,18 @@
+.form-container {
+ margin-top: 2em;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.form {
+ width: 100%;
+ max-width: 50em;
+ display: flex;
+ flex-direction: column;
+ gap:1em;
+}
+
+.send-button {
+ align-self: center;
+}
diff --git a/src/app/pages/login/login.component.html b/src/app/pages/login/login.component.html
index 47d7ad7..76e243f 100644
--- a/src/app/pages/login/login.component.html
+++ b/src/app/pages/login/login.component.html
@@ -1,14 +1,18 @@