sign_final / templates /index.html
zolodickk's picture
Update templates/index.html
d08eaec verified
raw
history blame
480 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LIVE STREAMING</title>
<style>
a {
font-size: 30px;
}
</style>
</head>
<body>
<video id="remoteVideo" autoplay></video>
<a href="{{ url_for('video_feed') }}" target="_self">Link to Video Feed</a>
<script src="{{ url_for('static', filename='main.js') }}"></script>
</body>
</html>