Skip to content

Instantly share code, notes, and snippets.

@mwygoda
Created August 31, 2017 16:57
Show Gist options
  • Select an option

  • Save mwygoda/04e8af705be648b79e6657c8203980b2 to your computer and use it in GitHub Desktop.

Select an option

Save mwygoda/04e8af705be648b79e6657c8203980b2 to your computer and use it in GitHub Desktop.
index.cshtml
<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