forked from lavender/watch-party
		
	
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="utf-8" />
 | |
|     <title>watch party :D</title>
 | |
|     <link rel="stylesheet" href="/styles.css?v=2" />
 | |
|   </head>
 | |
| 
 | |
|   <body>
 | |
|     <noscript>
 | |
|       This site will <em>not</em> work without JavaScript, and there's not
 | |
|       really any way around that :(
 | |
|     </noscript>
 | |
| 
 | |
|     <div id="pre-join-controls">
 | |
|       <form id="join-session-form">
 | |
|         <h2>Join a session</h2>
 | |
| 
 | |
|         <label for="nickname">Nickname:</label>
 | |
|         <input
 | |
|           type="text"
 | |
|           id="join-session-nickname"
 | |
|           placeholder="Nickname"
 | |
|           required
 | |
|         />
 | |
| 
 | |
|         <label for="session-id">Session ID:</label>
 | |
|         <input
 | |
|           type="text"
 | |
|           id="join-session-id"
 | |
|           placeholder="123e4567-e89b-12d3-a456-426614174000"
 | |
|           required
 | |
|         />
 | |
|         <button>Join</button>
 | |
|       </form>
 | |
| 
 | |
|       <p>
 | |
|         No session to join? <a href="/create.html">Create a session</a> instead.
 | |
|       </p>
 | |
|     </div>
 | |
| 
 | |
|     <div id="video-container"></div>
 | |
|     <div id="chatbox-container">
 | |
|       <div id="chatbox"></div>
 | |
|       <form id="chatbox-send">
 | |
|         <input type="text" placeholder="Message..." />
 | |
|       </form>
 | |
|     </div>
 | |
| 
 | |
|     <script src="/main.js?v=2"></script>
 | |
|   </body>
 | |
| </html>
 |