Created
August 31, 2017 16:57
-
-
Save mwygoda/04e8af705be648b79e6657c8203980b2 to your computer and use it in GitHub Desktop.
index.cshtml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div style="margin-top: 20px" class="container"> | |
| <div class="row"> | |
| <div class="form-inline" id="name-form"> | |
| <label class="control-label" for="nick">Type your name:</label> | |
| <input class="form-control" type="text" id="nick" /> | |
| <button class="btn btn-primary" onclick="goChat()">Let's chat!</button> | |
| </div> | |
| <div style="display: none" id="chat"> | |
| <h2 id="user-name"></h2> | |
| <form class="form-inline" id="form-send" action="#"> | |
| <label class="control-label" for="message">Message:</label> | |
| <input type="text" class="form-control" id="message" /> | |
| <button class="btn btn-primary" type="submit" id="send">Send</button> | |
| </form> | |
| <ul id="messages"></ul> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment