diff --git a/seahub/templates/base.html b/seahub/templates/base.html
index 0110e16cf4..67dac6126c 100644
--- a/seahub/templates/base.html
+++ b/seahub/templates/base.html
@@ -39,6 +39,7 @@
{% block nav %}{% endblock %}
+ {% block header_right %}
{% if request.user.is_authenticated %}
{% if has_file_search %}
@@ -91,8 +92,9 @@
{% endif %}
-
+
{% endif %}
+ {% endblock %}
diff --git a/seahub/templates/finish_payment.html b/seahub/templates/finish_payment.html
index 6220f70d42..5a2a2860d5 100644
--- a/seahub/templates/finish_payment.html
+++ b/seahub/templates/finish_payment.html
@@ -1,6 +1,63 @@
{% extends "myhome_base.html" %}
{% load i18n %}
-{% block main_panel %}
-Please finish the payment to continue. Thanks!
+{% block nav %}{% endblock %}
+{% block header_right %}
+{% trans "Log out" %}
+{% endblock %}
+
+{% block sub_title %}{% trans "Plan" %} - {% endblock %}
+
+{% block main_panel %}
+
+
+
+
Please finish the payment to continue. Thanks!
+
+
+ |
+ Professional $10/month |
+
+
+ Storage |
+ 100GB |
+
+
+ Number of Members |
+ 10 |
+
+
+ Number of Groups |
+ No limit |
+
+
+ |
+ Buy or Renew |
+
+
+
+
+
+
+{% endblock %}
+
+{% block extra_script %}
+
{% endblock %}