forked from hibas123/ScreenSharingThing
html pfusch
This commit is contained in:
@ -1,15 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="viewport" content="width=device-width, height= initial-scale=1.0">
|
||||
<link rel="stylesheet" href="./css/mystyle.css">
|
||||
<title>SimpleStream</title>
|
||||
<!-- //asset self hosting for non internet environments
|
||||
//TODO: improve this later with correct tools like bundeling
|
||||
-->
|
||||
|
||||
<link href="./css/bootstrap.min.css" rel="stylesheet">
|
||||
<script src="./lib/jquery.min.js"></script>
|
||||
<script src="./lib/bootstrap.bundle.min.js"></script>
|
||||
@ -17,11 +16,10 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row ">
|
||||
<div class="container-fluid vh-100">
|
||||
<div class="row-fluid">
|
||||
<div class="col-md-auto">
|
||||
<h1>SimpleStream</h1>
|
||||
<h1>SimpleStream (Alpha)</h1>
|
||||
<h2>Your ID: <span id="streamId"></span></h2>
|
||||
<div id="streamURLCont">
|
||||
<h2>Connect URL: <a id="streamURL"></a></h2>
|
||||
@ -30,12 +28,13 @@
|
||||
<h2>Connecting to: <span id="connectToID"></span></h2>
|
||||
<button id="startStramBTN">Start Stream</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<video id="localVideo" autoplay muted></video>
|
||||
</div>
|
||||
<video id="localVideo" style="width: 100%; height: 100%;" controls></video>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- style="min-width: 100%; min-height: 100%;width: auto; height: auto; z-index: -100; background-color: black;" -->
|
||||
|
||||
<script src="main.mjs" type="module">
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user