diff options
author | Unknwon <u@gogs.io> | 2015-09-16 15:34:46 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-16 15:34:46 -0400 |
commit | 2729eb998c8f18c2445269009b18048e0b2f4742 (patch) | |
tree | abfbb572e6f5a5e6c536365ab02b80627fae0d00 /templates | |
parent | b003b187883ea50c10b709ca97c26ecf1d9631bb (diff) | |
download | gitea-2729eb998c8f18c2445269009b18048e0b2f4742.tar.gz gitea-2729eb998c8f18c2445269009b18048e0b2f4742.zip |
#1646 and other minor fixes
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base/head.tmpl | 4 | ||||
-rw-r--r-- | templates/home.tmpl | 3 | ||||
-rw-r--r-- | templates/user/auth/activate.tmpl | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index 80f771ebc3..d18a15424c 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -125,11 +125,11 @@ <div class="right menu"> {{if .ShowRegistrationButton}} <a class="item{{if .PageIsSignUp}} active{{end}}" href="{{AppSubUrl}}/user/sign_up"> - <i class="octicon octicon-person-add"></i> {{.i18n.Tr "register"}} + <i class="icon octicon octicon-person-add"></i> {{.i18n.Tr "register"}} </a> {{end}} <a class="item{{if .PageIsSignIn}} active{{end}}" href="{{AppSubUrl}}/user/login"> - <i class="octicon octicon-sign-in"></i> {{.i18n.Tr "sign_in"}} + <i class="icon octicon octicon-sign-in"></i> {{.i18n.Tr "sign_in"}} </a> </div><!-- end anonymous right menu --> diff --git a/templates/home.tmpl b/templates/home.tmpl index 18b430d1fb..77dcebeec3 100644 --- a/templates/home.tmpl +++ b/templates/home.tmpl @@ -3,7 +3,7 @@ <div class="ui stackable middle very relaxed page grid"> <div class="sixteen wide center aligned centered column"> <div> - <img class="logo" src="{{AppSubUrl}}/img/gogs-lg.png" /> + <img class="logo" src="{{AppSubUrl}}/img/gogs-lg.png" /> </div> <div class="hero"> <h1 class="ui icon header title"> @@ -12,7 +12,6 @@ <h2>{{.i18n.Tr "app_desc"}}</h2> </div> </div> - <div class="ui divider"></div> </div> {{if eq .Lang "de-DE"}} <div class="ui stackable middle very relaxed page grid"> diff --git a/templates/user/auth/activate.tmpl b/templates/user/auth/activate.tmpl index b4dbb2e206..724f6b5078 100644 --- a/templates/user/auth/activate.tmpl +++ b/templates/user/auth/activate.tmpl @@ -23,7 +23,7 @@ <p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .Email .Hours | Str2html}}</p> <hr/> <label></label> - <a class="btn btn-green btn-large btn-link btn-radius" href="http://{{Mail2Domain .Email}}">{{.i18n.Tr "auth.sign_in_email"}}</a> + <a class="btn btn-green btn-large btn-link btn-radius" href="http://{{Mail2Domain .Email}}">{{.i18n.Tr "auth.sign_in_to_account"}}</a> {{else if .IsActivateFailed}} <p>{{.i18n.Tr "auth.invalid_code"}}</p> {{else}} |