diff --git a/ImageBoardServerApp/Pages/Basic/Index.razor b/ImageBoardServerApp/Pages/Basic/Index.razor index 155628e..73bffca 100644 --- a/ImageBoardServerApp/Pages/Basic/Index.razor +++ b/ImageBoardServerApp/Pages/Basic/Index.razor @@ -3,20 +3,34 @@ @inject AuthenticationStateProvider authStateProvider

BulletBoard

-This is a simple Imageboard made in Razor. -
-We're currently hosting @amountOfPosts Threads, @amountOfComments Comments and @amountOfUsers Users. -
-@Details - - -
- Edit your account -
-
+

+ This is a simple imageboard made in Razor Server. +
+ This project was made by Pierre, Jennifer and Eric. +
+ This project is licensed under the GPL-3.0. +
+ Click here to learn more about free software. +
+
+ We're currently @amountOfUsers User(s), viewing @amountOfPosts Post(s) with @amountOfComments Comment(s). +
+ Click here to: + + + Edit your account information + + + Create an account to start posting + + or + + Log into your account + + +

@code{ - private string Details { get; set; } private int amountOfPosts = -1; private int amountOfComments = -1;