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:
parent
f57338ab51
commit
bdb2d0a0b5
7 changed files with 65 additions and 12 deletions
|
@ -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;
|
||||
|
|
14
ImageBoardServerApp/Pages/Index.razor.css
Normal file
14
ImageBoardServerApp/Pages/Index.razor.css
Normal file
|
@ -0,0 +1,14 @@
|
|||
.loginlink{
|
||||
display: block;
|
||||
font-size: 10px;
|
||||
color: #c6cfd0;
|
||||
}
|
||||
|
||||
.imblue{
|
||||
color: #0a53be;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.loginwrapper{
|
||||
display: flex;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue