diff --git a/hiboo/models.py b/hiboo/models.py
index fd1205da785cabfeba6b7fa586b0fc5b0aad6441..1a07dc5d790031023f960d3c52926f5411668af1 100644
--- a/hiboo/models.py
+++ b/hiboo/models.py
@@ -176,13 +176,15 @@ class Profile(db.Model):
     ACTIVE = "active"
     BLOCKED = "blocked"
     DELETED = "deleted"
+    REJECTED = "rejected"
 
     STATUSES = {
         UNCLAIMED: ("gray", _("unclaimed")),
         REQUEST: ("blue", _("requested")),
         ACTIVE: ("green", _("active")),
         BLOCKED: ("orange", _("blocked")),
-        DELETED: ("red", _("deleted"))
+        DELETED: ("red", _("deleted")),
+        REJECTED: ("orange", _("rejected"))
     }
 
     user_uuid = db.Column(db.String(36), db.ForeignKey(User.uuid))
diff --git a/hiboo/profile/admin.py b/hiboo/profile/admin.py
index 1a99cb0dd1a8e750cdec4df3238b3674b89206ad..a5c476201e5b97d28a5ab23f4b94452ebaa5ff9d 100644
--- a/hiboo/profile/admin.py
+++ b/hiboo/profile/admin.py
@@ -34,7 +34,7 @@ def details(profile_uuid):
 @security.confirmation_required("change the profile status")
 @security.admin_required()
 def set_status(profile_uuid, status):
-    if status not in (models.Profile.ACTIVE, models.Profile.BLOCKED):
+    if status not in (models.Profile.ACTIVE, models.Profile.BLOCKED, models.Profile.REJECTED):
         flask.abort(403)
     profile = models.Profile.query.get(profile_uuid) or flask.abort(404)
     profile.status = status
diff --git a/hiboo/profile/templates/profile_list.html b/hiboo/profile/templates/profile_list.html
index 08b1e6f95eb9f315be662bc011bbeaa9b82cf688..d8d8fa75ba4300aca38ca9219df07902d9de5acb 100644
--- a/hiboo/profile/templates/profile_list.html
+++ b/hiboo/profile/templates/profile_list.html
@@ -49,6 +49,7 @@
               <a href="{{ url_for("profile.set_status", profile_uuid=profile.uuid, status="active") }}">{% trans %}Unblock profile{% endtrans %}</a>
               {% elif profile.status == "request" %}
               <a href="{{ url_for("profile.set_status", profile_uuid=profile.uuid, status="active") }}">{% trans %}Validate profile{% endtrans %}</a>
+              <a href="{{ url_for("profile.set_status", profile_uuid=profile.uuid, status="rejected") }}">{% trans %}Rejected profile{% endtrans %}</a>
               {% elif profile.status == "unclaimed" %}
               <a href="{{ url_for("profile.assign", profile_uuid=profile.uuid) }}">{% trans %}Assign profile{% endtrans %}</a>
               {% endif %}