diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index b6411f7777..69aad0c5f3 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -421,6 +421,7 @@ remember_me.compromised = The login token is not valid anymore which may indicat forgot_password_title= Forgot Password forgot_password = Forgot password? need_account = Need an account? +sign_up_tip = You are registering the first account in the system. Upon successful registration, you will become the Super Administrator. Please carefully remember your username and password, as losing this information could cause significant inconvenience later. sign_up_now = Register now. sign_up_successful = Account was successfully created. Welcome! confirmation_mail_sent_prompt_ex = A new confirmation email has been sent to %s. Please check your inbox within the next %s to complete the registration process. If your registration email address is incorrect, you can sign in again and change it. diff --git a/routers/install/install.go b/routers/install/install.go index 2962f3948f..bd7810e809 100644 --- a/routers/install/install.go +++ b/routers/install/install.go @@ -558,6 +558,8 @@ func SubmitInstall(ctx *context.Context) { } log.Info("Admin account already exist") u, _ = user_model.GetUserByName(ctx, u.Name) + } else { + ctx.Data["IsAccountCreated"] = true } nt, token, err := auth_service.CreateAuthTokenForUserID(ctx, u.ID) diff --git a/routers/web/auth/auth.go b/routers/web/auth/auth.go index 69b9d285b7..f07e821e01 100644 --- a/routers/web/auth/auth.go +++ b/routers/web/auth/auth.go @@ -424,6 +424,8 @@ func SignUp(ctx *context.Context) { ctx.Data["SignUpLink"] = setting.AppSubURL + "/user/sign_up" + ctx.Data["IsFirstTimeRegistration"] = user_model.CountUsers(ctx, nil) == 0 + oauth2Providers, err := oauth2.GetOAuth2Providers(ctx, optional.Some(true)) if err != nil { ctx.ServerError("UserSignUp", err) diff --git a/templates/post-install.tmpl b/templates/post-install.tmpl index 0c9aa35c90..44099ce29d 100644 --- a/templates/post-install.tmpl +++ b/templates/post-install.tmpl @@ -4,7 +4,7 @@
{{ctx.Locale.Tr "auth.sign_up_tip"}}
+ {{end}}