bigly-chat/views/player.ejs

15 lines
496 B
Text
Raw Normal View History

2024-11-25 14:12:43 -05:00
<%- include('header.ejs') -%>
<div class='area'>
<h1>Video</h1>
<video controls src='/videos/<%= videoData.id %>.mp4'></video>
<div><b>
<%= videoData.title %>
</b>
</div>
<div>by <a href="/client/user?id=<%= videoData.username %>">
<%= videoData.username %>
</a></div>
2024-11-25 14:12:43 -05:00
<pre><%= videoData.desc %></pre>
2024-11-25 14:12:43 -05:00
<!-- todo: custom video player-->
</div>
<%- include('footer.ejs') -%>