bigly-chat/views/player.ejs

22 lines
726 B
Text
Raw Normal View History

2024-11-25 14:12:43 -05:00
<%- include('header.ejs') -%>
<div class='area'>
<h1>Video</h1>
2024-11-25 14:12:43 -05:00
<div class='video-wrapper'>
2024-11-25 14:12:43 -05:00
<video src='/videos/<%= videoData.id %>.webm'></video>
2024-11-25 14:12:43 -05:00
<div class="progressbar">
2024-11-25 14:12:43 -05:00
<div></div>
</div>
2024-11-25 14:12:43 -05:00
<div class='controls'>
<div class='play'><img src='/static/img/play.svg' class='dark'></div>
</div>
2024-11-25 14:12:43 -05:00
</div>
2024-11-25 14:12:43 -05:00
<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
</div>
<%- include('footer.ejs') -%>