13 lines
295 B
HTML
13 lines
295 B
HTML
<!doctype html>
|
|
<html>
|
|
<title>Message Broker Example</title>
|
|
<body>
|
|
<app></app>
|
|
<input type="text" id="echo_input" />
|
|
<button type="button" id="send_echo">Send Echo</button>
|
|
<p id="echo_result"></p>
|
|
<p id="ui_result"></p>
|
|
<script src="../../bootstrap.js"></script>
|
|
</body>
|
|
</html>
|