feat: added QR Code to index

fix: fixed language in index

Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
limited_dev 2023-06-14 16:15:56 +02:00
parent 73be698399
commit 64c4c92cb1
2 changed files with 10 additions and 4 deletions

View file

@ -3,7 +3,7 @@
@using ImageBoardServerApp.Data.Repository
@inject AuthenticationStateProvider authStateProvider
<h1>BulletBoard @ver</h1>
<h1>BulletBoards @ver</h1>
<p>
This is a simple <a href="https://en.wiktionary.org/wiki/imageboard">imageboard</a> made in <a href="https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor">Razor Server</a>.
<br/>
@ -16,7 +16,7 @@
Check out the project on <a href="https://git.limited-dev.de/eric/imageboard">Gitlab</a>.
<br>
<br/>
We're currently @amountOfUsers User(s), viewing @amountOfPosts Post(s) with @amountOfComments Comment(s).
We're currently @amountOfUsers users, viewing @amountOfPosts post with @amountOfComments comment.
<br/>
Click here to:
<AuthorizeView>
@ -25,12 +25,18 @@
</Authorized>
<NotAuthorized>
<a href="/sys/register">Create an account to start posting</a>
<a>&emsp;</a>
<a>
&emsp;
</a>
or
<a>&emsp;</a>
<a href="/sys/login">Log into your account</a>
</NotAuthorized>
</AuthorizeView>
<br/>
<br/>
<img src="img/static/sys/qr.png" alt="QR CODE"/>
</p>
@code{

View file

@ -6,7 +6,7 @@ namespace ImageBoardServerApp.Util;
public class TheManager
{
public static string version = "v1.0.0-rc1";
public static string version = "v1.0.0-rc2";
private static long getDiff(PostData post)
{