23 lines
624 B
Plaintext
23 lines
624 B
Plaintext
@{ ViewBag.Title = "Chat"; }
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
<label><input type="checkbox" id="mute" />Muet</label>
|
|
|
|
<div class="container disabled panel" id="chatview" data="fullchatview"
|
|
data-chans="yavsc" data-mutectl="mute" ></div>
|
|
|
|
@section scripts {
|
|
<!--Reference the autogenerated SignalR hub script. -->
|
|
<script src="~/api/signalr/hubs"></script>
|
|
<!-- SignalR script to update the chat page and send messages.-->
|
|
|
|
@if (!ViewBag.IsAuthenticated) { // Get the user name and store it to prepend to messages.
|
|
<script>
|
|
// var uname = prompt('Entrez votre nom:', '');
|
|
|
|
</script>
|
|
}
|
|
<script src="~/js/chat.js"></script>
|
|
|
|
}
|