2024-09-20 16:59:12 -04:00
|
|
|
<%- include('header.ejs') -%>
|
|
|
|
<div class='area'>
|
|
|
|
<h1>User</h1>
|
2024-09-22 10:49:47 -04:00
|
|
|
<form class='user' enctype='multipart/form-data' method='POST' action='/api/form/follow'>
|
2024-09-20 16:59:12 -04:00
|
|
|
<p>
|
|
|
|
<b>@<%= id %></b>
|
|
|
|
</p>
|
2024-09-22 10:49:47 -04:00
|
|
|
<p>
|
|
|
|
<%= following.length %> following
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<%= followers.length %> followers
|
|
|
|
</p>
|
|
|
|
<input name='target' hidden value="<%= id %>">
|
|
|
|
<input type='submit' value="Follow">
|
|
|
|
</form>
|
2024-09-20 16:59:12 -04:00
|
|
|
</div>
|
|
|
|
<div class='area'>
|
|
|
|
<h1>Uploaded Videos</h1>
|
|
|
|
<div class=' videos'>
|
|
|
|
<%- include('videos.ejs') -%>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-09-22 03:49:36 -04:00
|
|
|
<%- include('comments.ejs') -%>
|
2024-09-22 10:49:47 -04:00
|
|
|
<%- include('footer.ejs') -%>
|