20 lines
		
	
	
		
			513 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			513 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <body>
 | 
						|
    <style>
 | 
						|
      #chat p span {
 | 
						|
        color: blue;
 | 
						|
      }
 | 
						|
    </style>
 | 
						|
    <div id="chat"></div>
 | 
						|
    <form id="chatform">
 | 
						|
      <input name="username" type="text" style="width:15%;">
 | 
						|
      <input name="message" type="text" style="width:60%;">
 | 
						|
      <input type="submit" value="Send">
 | 
						|
    </form>
 | 
						|
    <script src="../../y.js"></script>
 | 
						|
    <script src="../../../y-websockets-client/dist/y-websockets-client.js"></script>
 | 
						|
    <script src="./index.js"></script>
 | 
						|
  </body>
 | 
						|
</html>
 |