This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72e64e9
commit 391b78a
Showing
5 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ public static Result login() throws IOException, JAXBException { | |
if(!userManager.roleNameExists(userId)){ | ||
return ok(gotopage.render("Looks like you have not activated your account. Your account activation link has sent to " + userEmail + ". Please check your email and activate account. " + | ||
"If you have not received your activation link, please contact us by email " + | ||
" ", "mailto:[email protected]?Subject=Issue_with_account_activation_link", "([email protected]).",null)); | ||
" ", "mailto:"+PlayConfWrapper.supportEmail()+"?Subject=Issue_with_account_activation_link", PlayConfWrapper.supportEmail(),null)); | ||
} | ||
log.debug("Role name exists: " + userManager.roleNameExists(userId)); | ||
log.info("Logged in user:"+ userId + ", Email:" + userEmail + ", Remote address:" + request().remoteAddress()); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ public static Result signUp() { | |
return ok(gotopage.render("Welcome to HTRC! You account activation link was sent to " | ||
+ signUpForm.get().email + | ||
". If you don't receive your activation link within 5 minutes, please contact us by email " + | ||
" ", "mailto:[email protected]?Subject=Issue_with_account_activation_link", "([email protected]).", null)); | ||
" ", "mailto:"+PlayConfWrapper.supportEmail()+"?Subject=Issue_with_account_activation_link", PlayConfWrapper.supportEmail(), null)); | ||
} | ||
|
||
public static Result activateAccount(String token) { | ||
|
@@ -61,7 +61,7 @@ public static Result activateAccount(String token) { | |
} | ||
return ok(gotopage.render("Your account is activated successfully. Click on the login link to begin:", "login", "Login", null)); | ||
} | ||
return ok(gotopage.render("It looks like you have already activated your account or some error on your activation link. Please try to login with your user credentials. If you can't login or activate your account, please contact us by email.", "mailto:[email protected]?Subject=Issue_with_account_activation_link", "([email protected]).", null)); | ||
return ok(gotopage.render("It looks like you have already activated your account or some error on your activation link. Please try to login with your user credentials. If you can't login or activate your account, please contact us by email.", "mailto:"+PlayConfWrapper.supportEmail()+"?Subject=Issue_with_account_activation_link", PlayConfWrapper.supportEmail(), null)); | ||
} | ||
|
||
public static Result createAccountRequestForm() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters