added temp db files to gitignore, added link to login page to index, changed around the comment form, comments and posts

This commit is contained in:
limited_dev 2023-01-27 21:15:50 +01:00
parent f57338ab51
commit bdb2d0a0b5
7 changed files with 65 additions and 12 deletions

View file

@ -5,6 +5,13 @@
<span>This is a simple Imageboard made in Razor.</span>
<br/>
<span>We're currently hosting @amountOfPosts Threads with @amountOfComments Comments from @amountOfUsers Users.</span>
<br/>
<div class="loginwrapper">
<span class="loginlink">If you are a member of the server team please log in</span>
<span> </span>
<a class="loginlink imblue" href="/login">[here]</a>
<span class="loginlink">.</span>
</div>
@code{
private int amountOfPosts = -1;

View file

@ -0,0 +1,14 @@
.loginlink{
display: block;
font-size: 10px;
color: #c6cfd0;
}
.imblue{
color: #0a53be;
cursor: pointer;
}
.loginwrapper{
display: flex;
}