summary refs log tree commit diff
path: root/webclient/user/user.html
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2014-11-04 15:57:23 +0000
committerMark Haines <mark.haines@matrix.org>2014-11-04 15:57:23 +0000
commit89ba802b23bf1fd22afbc5e9a4b3b732264e3c18 (patch)
tree34b7803cf8dfb570165c1b1c6f674dc5ca4476c7 /webclient/user/user.html
parentMerge pull request #11 from matrix-org/webclient-room-data-restructure (diff)
downloadsynapse-89ba802b23bf1fd22afbc5e9a4b3b732264e3c18.tar.xz
Move webclient to a python module so that it can be installed
Diffstat (limited to 'webclient/user/user.html')
-rw-r--r--webclient/user/user.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/webclient/user/user.html b/webclient/user/user.html
deleted file mode 100644
index 2aa981437b..0000000000
--- a/webclient/user/user.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<div ng-controller="UserController" class="user">
-
-    <div id="wrapper">
-
-        <div id="genericHeading">
-            <a href ng-click="goToPage('/')"><img src="img/logo-small.png" width="100" height="43" alt="[matrix]"/></a>
-        </div>
-
-        <h1>{{ user.displayname || user.id }}</h1>
-
-        <div>
-            <div class="profile-avatar">
-                <img ng-src="{{ user.avatar_url || 'img/default-profile.png' }}"/>
-            </div>
-            <div id="user-ids">
-                <div>{{ user.id }}</div>                        
-            </div>
-        </div>
-
-        <button ng-hide="user.id == user_id" ng-click="messageUser()" style="font-size: 14pt; margin-top: 40px; margin-bottom: 40px">Start chat</button>
-        <br/>
-        {{ feedback }}
-
-    </div>
-</div>