diff --git a/media/css/seahub.css b/media/css/seahub.css index 8c3a41f82c..80409343ea 100644 --- a/media/css/seahub.css +++ b/media/css/seahub.css @@ -148,4 +148,6 @@ div.home-page h2 { font-style: italic; } #id_repo_id { width:300px; } -span.small-action-link { font-size: 9px; } \ No newline at end of file +span.small-action-link { font-size: 9px; } +input.ccnet_id { width: 300px; } +.notification { background:#FDF; width:580px; margin:10px 0; border:1px solid #faf; padding-left:2px; } diff --git a/profile/templates/profile/profile.html b/profile/templates/profile/profile.html index 365eb2204e..a09589a3f5 100644 --- a/profile/templates/profile/profile.html +++ b/profile/templates/profile/profile.html @@ -3,7 +3,7 @@ {% block left_panel %}
{% endblock %} @@ -11,8 +11,8 @@ {% block right_panel %} -Ccnet ID: {{ profile.ccnet_user_id }}
+Ccnet 公钥 ID: {{ profile.ccnet_user_id }}
{% endblock %} diff --git a/profile/templates/profile/set_profile.html b/profile/templates/profile/set_profile.html index c342468538..5e24bcb1fa 100644 --- a/profile/templates/profile/set_profile.html +++ b/profile/templates/profile/set_profile.html @@ -2,14 +2,14 @@ {% block right_panel %} -名字 | diff --git a/templates/registration/activate.html b/templates/registration/activate.html index 02c829e06c..86d2faf655 100644 --- a/templates/registration/activate.html +++ b/templates/registration/activate.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "myhome_base.html" %} {% block title %}Create an account{% endblock %} diff --git a/templates/registration/activation_complete.html b/templates/registration/activation_complete.html index 5076fcea04..a84599f880 100644 --- a/templates/registration/activation_complete.html +++ b/templates/registration/activation_complete.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "myhome_base.html" %} {% block title %}Create an account{% endblock %} diff --git a/templates/registration/login.html b/templates/registration/login.html index 7bd1b10772..fd7d04bfde 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "myhome_base.html" %} {% block title %}用户登录{% endblock %} {% block main_panel %}
---|