27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<div id="chat">
|
|
<article class="message chat">
|
|
<div class="message-header" onclick="slideToggle()">
|
|
<p>Chat</p>
|
|
<i id="chat-alert"></i>
|
|
</div>
|
|
<div id="chat-content">
|
|
<div class="body">
|
|
<div id="log"></div>
|
|
</div>
|
|
<form id="form" autocomplete="off">
|
|
<div class="field has-addons">
|
|
<div class="send" style="margin-top: 10px;">
|
|
<div class="control-input">
|
|
<input class="input" id="msg" type="text" placeholder="введите сообщение...">
|
|
</div>
|
|
<div class="control">
|
|
<button id="chat-button" class="button is-info" type="submit" >
|
|
<img src="/svg/send.svg" alt="Description of the image" width="40px" height="40px">
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</article>
|
|
</div> |