REORG
This commit is contained in:
parent
8d68ee380a
commit
45514010f2
3505 changed files with 154 additions and 523 deletions
22
src/Org/Views/Home/Chat.cshtml
Normal file
22
src/Org/Views/Home/Chat.cshtml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
@{ 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. -->
|
||||
<!-- 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="~/lib/microsoft/signalr/dist/browser/signalr.min.js" asp-append-version="true"></script>
|
||||
<script src="~/js/chat.js" asp-append-version="true"></script>
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue