Browse Source

Working on register mail confirmation

Unknown 11 years ago
parent
commit
0da4975f4f
2 changed files with 5 additions and 4 deletions
  1. 3 3
      modules/middleware/auth.go
  2. 2 1
      templates/user/active.tmpl

+ 3 - 3
modules/middleware/auth.go

@@ -17,9 +17,9 @@ func SignInRequire(redirect bool) martini.Handler {
 			}
 			return
 		} else if !ctx.User.IsActive {
-			ctx.Data["Title"] = "Activate Your Account"
-			ctx.Render.HTML(200, "user/active", ctx.Data)
-			return
+			// ctx.Data["Title"] = "Activate Your Account"
+			// ctx.Render.HTML(200, "user/active", ctx.Data)
+			// return
 		}
 	}
 }

+ 2 - 1
templates/user/active.tmpl

@@ -2,7 +2,7 @@
 {{template "base/navbar" .}}
 <div id="gogs-body" class="container">
     <form action="/user/activate" method="post" class="form-horizontal gogs-card" id="gogs-login-card">
-        <h3>Active Your Account</h3>
+        <h3>Activate Your Account</h3>
         {{if .IsActivatePage}}
         {{if .ServiceNotEnabled}}
         <p>Sorry, Register Mail Confirmation has been disabled.</p>
@@ -11,6 +11,7 @@
         {{end}}
         {{else}}
 		<p>Hi, {{.SignedUser.Name}}, you have an unconfirmed email address(<b>{{.SignedUser.Email}}</b>). If you haven't received a confirmation e-mail or need to resend a new one, please click botton below.</p>
+		<hr/>
         <div class="form-group">
             <div class="col-md-offset-4 col-md-6">
                 <button type="submit" class="btn btn-lg btn-primary">Click here to resend your active e-mail</button>