bigly-chat/views/user.ejs

25 lines
No EOL
768 B
Text

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