diff --git a/public/css/index.css b/public/css/index.css
index 5339aefe6..f58e56bf0 100644
--- a/public/css/index.css
+++ b/public/css/index.css
@@ -417,6 +417,8 @@ footer .ui.left,footer .ui.right{line-height:40px}
 .repository .repo-header .ui.header{margin-top:0}
 .repository .repo-header .mega-octicon{width:30px;font-size:30px}
 .repository .repo-header .ui.huge.breadcrumb{font-weight:400;font-size:1.5rem}
+.repository .repo-header .ui.huge.breadcrumb i.mega-octicon{position:relative;top:5px}
+.repository .repo-header .ui.huge.breadcrumb i.octicon-lock{margin-left:5px}
 .repository .repo-header .fork-flag{margin-left:36px;margin-top:3px;display:block;font-size:12px;white-space:nowrap}
 .repository .repo-header .octicon.octicon-repo-forked{margin-top:-1px;font-size:15px}
 .repository .repo-header .button{margin-top:2px;margin-bottom:2px}
diff --git a/public/less/_repository.less b/public/less/_repository.less
index 3ba747bdd..8eb4a45bd 100644
--- a/public/less/_repository.less
+++ b/public/less/_repository.less
@@ -20,6 +20,15 @@
         .ui.huge.breadcrumb {
             font-weight: 400;
             font-size: 1.5rem;
+
+            i.mega-octicon {
+                position: relative;
+                top: 5px;
+            }
+
+            i.octicon-lock {
+                margin-left: 5px;
+            }
         }
 
         .fork-flag {
diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl
index f264a9b55..e657042b6 100644
--- a/templates/repo/header.tmpl
+++ b/templates/repo/header.tmpl
@@ -11,6 +11,7 @@
 				<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
 				<div class="divider"> / </div>
 				<a href="{{$.RepoLink}}">{{.Name}}</a>
+				{{if and .RelAvatarLink .IsPrivate}}<i class="mega-octicon octicon-lock"></i>{{end}}
 				{{if .IsArchived}}<i class="archive icon archived-icon"></i>{{end}}
 				{{if .IsMirror}}<div class="fork-flag">{{$.i18n.Tr "repo.mirror_from"}} <a target="_blank" rel="noopener noreferrer" href="{{$.Mirror.Address}}">{{$.Mirror.Address}}</a></div>{{end}}
 				{{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.Link}}">{{SubStr .BaseRepo.RelLink 1 -1}}</a></div>{{end}}