20 lines
		
	
	
		
			804 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			804 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title>BotUI - Thermostat Bot</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
 | |
|     <link rel="stylesheet" href="https://unpkg.com/botui/build/botui.min.css" />
 | |
|     <link rel="stylesheet" href="https://unpkg.com/botui/build/botui-theme-default.css" />
 | |
|     <meta name="description" content="A thermostat bot to change the temperate. A conversational UI built using BotUI.">
 | |
|   </head>
 | |
|   <body>
 | |
|     <div class="botui-app-container" id="thermostat-bot">
 | |
|       <bot-ui></bot-ui>
 | |
|     </div>
 | |
|     <script src="https://cdn.jsdelivr.net/vue/latest/vue.min.js"></script>
 | |
|     <script src="https://unpkg.com/botui/build/botui.js"></script>
 | |
|     <script src="./thermostat-bot.js"></script>
 | |
|   </body>
 | |
| </html>
 |