Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. <!DOCTYPE html xmlns:th="http://www.thymeleaf.org">
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>CHAT!!</title>
  6. </head>
  7. <body>
  8. <div id="main-wrapper">
  9. <div id="a"></div>
  10. <div id="b">
  11. <div id="b1">Welcome, <b th:text="$username"></b></div>
  12. <div id="b2"><a id="logout" href="logout"></a>Keluar</div>
  13. <br style="clear: both;"/>
  14. </div>
  15. <div id="c">
  16. <div id="c1">
  17. <div id="actove-user-wrapper"></div>
  18. </div>
  19. <div id="chat-window">
  20. <div id="c2c">
  21. <div id="c2c1">
  22. <div id="chat-input-text" contenteditable="true"></div>
  23. </div>
  24. <div id="emot-button">
  25. <div id="emot-popup" style="display: none;">
  26. <img class="emot-pick" src="asset/emot-smile.png"/>
  27. <img class="emot-pick" src="asset/emot-love.png"/>
  28. <img class="emot-pick" src="asset/emot-sad.png"/>
  29. <img class="emot-pick" src="asset/emot-confused.png"/>
  30. </div>
  31. <div id="send-button"></div>
  32. <br style="clear:both;"/>
  33. </div>
  34. </div>
  35. <br style="clear: both;" />
  36. </div>
  37. </div>
  38. </div>
  39.  
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement