mytube-frontend/src/app/feature/video/video.component.html
Flo d3fbda5e74
Some checks are pending
Node.js CI / build (20.x) (push) Waiting to run
tags
2024-02-25 16:02:36 +01:00

16 lines
305 B
HTML

<div
*ngIf="videoDetails !== null">
<button [routerLink]="['/video/list']">Videos</button>
<h1>{{videoDetails.title}}</h1>
<video
style="height: 100%; width: 100%;"
controls
autoplay>
<source [src]="videoUrl" type="video/mp4">
</video>
</div>