35 lines
		
	
	
		
			930 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			930 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html>
 | |
| <head>
 | |
|     <link rel="stylesheet" href="styles.css"/>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
| <!--<div id="side-panel"></div>-->
 | |
| 
 | |
| <div id="main-panel">
 | |
| 
 | |
| <div id="header">
 | |
|     <button id="conversation-list-button" class="rounded-rectangle" onclick="showSidePanel()"><- back</button>
 | |
|     <h1 id="header-title">NAME</h1>
 | |
| </div>
 | |
| 
 | |
| <ul id="messages"></ul>
 | |
| 
 | |
| <p id="typing-indicator">NAME is typing...</p>
 | |
| 
 | |
| <div id="input-panel-container">
 | |
| <div id="input-panel" class="rounded-rectangle">
 | |
|     <input id="textbox-input" type="text" onkeydown="pressSendButton()"></input>
 | |
|     <button onclick="pressSendButton()"><i class="fa fa-arrow-right" style="font-size:2em"></i></button>
 | |
| </div>
 | |
| </div>
 | |
| 
 | |
| </div>
 | |
| 
 | |
| <script src="main.js"></script>
 | |
| </body>
 | |
| </html>
 |