diff options
author | Kevin Chabowski <kevin@kch42.de> | 2014-03-27 13:52:06 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2014-03-27 23:51:07 +0100 |
commit | a21ee0a20ba0e49a4a565400412a0e0194c8e3b1 (patch) | |
tree | d745594649fa16230ad50924ede9f1b166b14fec /tpls | |
parent | 7206812e266df8d57cd6628e22b9049b6517ebb8 (diff) | |
download | simplechat-a21ee0a20ba0e49a4a565400412a0e0194c8e3b1.tar.gz simplechat-a21ee0a20ba0e49a4a565400412a0e0194c8e3b1.tar.bz2 simplechat-a21ee0a20ba0e49a4a565400412a0e0194c8e3b1.zip |
Some nice styling!
Diffstat (limited to 'tpls')
-rw-r--r-- | tpls/chat.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tpls/chat.html b/tpls/chat.html index 27ad69f..35582c7 100644 --- a/tpls/chat.html +++ b/tpls/chat.html @@ -8,8 +8,12 @@ <link rel="stylesheet" type="text/css" href="/static/style.css" /> </head> <body> + <h1>{{.Roomname}}</h1> - <ul id="buddies"></ul> + <div id="buddiescontainer"> + <h2>Users online</h2> + <ul id="buddies"></ul> + </div> <ul id="chatlog"></ul> <div id="chatinput"> <input type="text" name="chattext" id="chattext"/> |