16 lines
305 B
HTML
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>
|