user page, meta fixes, css updates

This commit is contained in:
biglyderv 2024-09-20 16:59:12 -04:00
parent ab18ad9ec9
commit a473e38a87
No known key found for this signature in database
GPG key ID: 33AC87E9ACE66954
6 changed files with 47 additions and 6 deletions

View file

@ -15,6 +15,7 @@
<%if (username=='!nobody' ) { %>
<div class="button"><a href="/client/register">Join</a></div>
<% } %>
<div class="button"><a href="https://discord.gg/7JJBYySY">Chat</a></div>
</div>
<div class='area'>
<h1>Recent Videos</h1>

17
views/user.ejs Normal file
View file

@ -0,0 +1,17 @@
<%- include('header.ejs') -%>
<div class='area'>
<h1>User</h1>
<div class='user'>
<p>
<b>@<%= id %></b>
</p>
</div>
</div>
<div class='area'>
<h1>Uploaded Videos</h1>
<div class=' videos'>
<%- include('videos.ejs') -%>
</div>
</div>
<%- include('footer.ejs') -%>