2024-11-25 14:12:43 -05:00
|
|
|
<%- include('header.ejs') -%>
|
|
|
|
<div class='area'>
|
|
|
|
<h1>User</h1>
|
2024-11-25 14:12:43 -05:00
|
|
|
<form class='user' enctype='multipart/form-data' method='POST' action='/api/form/follow'>
|
2024-11-25 14:12:43 -05:00
|
|
|
<p>
|
|
|
|
<b>@<%= id %></b>
|
|
|
|
</p>
|
2024-11-25 14:12:43 -05:00
|
|
|
<p>
|
|
|
|
<%= following.length %> following
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<%= followers.length %> followers
|
|
|
|
</p>
|
|
|
|
<input name='target' hidden value="<%= id %>">
|
|
|
|
<input type='submit' value="Follow">
|
|
|
|
</form>
|
2024-11-25 14:12:43 -05:00
|
|
|
</div>
|
|
|
|
<div class='area'>
|
|
|
|
<h1>Uploaded Videos</h1>
|
|
|
|
<div class=' videos'>
|
|
|
|
<%- include('videos.ejs') -%>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-11-25 14:12:43 -05:00
|
|
|
<%- include('comments.ejs') -%>
|
2024-11-25 14:12:43 -05:00
|
|
|
<%- include('footer.ejs') -%>
|