Created
January 3, 2019 02:30
-
-
Save dcomartin/cac71306287665a3b77b39a6c76775d6 to your computer and use it in GitHub Desktop.
This file contains 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
@page | |
<div> | |
<input type="button" id="joinGroup" value="Join Private Group" /> | |
</div> | |
<textarea name="message" id="message"></textarea> | |
<select id="group"> | |
<option value="All">Everyone</option> | |
<option value="Myself">Myself</option> | |
<option value="PrivateGroup">Private Group</option> | |
</select> | |
<input type="button" id="sendButton" value="Send Message"/> | |
<div id="messages"></div> | |
<script src="~/lib/signalr.js"></script> | |
<script src="~/js/message.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment