diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-02-22 14:35:32 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-02-22 14:35:32 +0100 |
commit | 66d3bfc784e212436d7e363c2e140e7739a8eed7 (patch) | |
tree | f8105e3d9af9d6cbb4728b99dd1a7faac504e143 | |
parent | 577c6b8bc066651d4359fa92003fbac48af306f0 (diff) |
Fix buttons in profile screen
-rw-r--r-- | index.html | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -444,14 +444,12 @@ <!-- profile screen --> <div class="container" id="screen_profile" style="display: none;"> - <h2> - <span data-tkey="profile">Profile</span> - <div class="btn-group pull-right"> - <button type="button" class="btn btn-default saml-login-hide" data-tkey="change_pass" id="change_pass_profile">Change Password</button> - <button type="button" class="btn btn-default" id="btnProfileGoBack" data-tkey="go_back">Go back</button> - </div> - </h2> - <hr> + <h2 data-tkey="profile">Profile</h2> + <div class="btn-group"> + <button type="button" class="btn btn-default saml-login-hide" data-tkey="change_pass" id="change_pass_profile">Change Password</button> + <button type="button" class="btn btn-default" id="btnProfileGoBack" data-tkey="go_back">Go back</button> + </div> + <hr /> <div class="row"> <div class="col-lg-12 col-md-12"> <div class="panel panel-default"> |