@@ -91,8 +91,9 @@ public LoginView(@Value("${pathmind.privacy-policy.url}") String privacyPolicyUr
91
91
Div innerContent = new Div ();
92
92
innerContent .setClassName ("inner-content" );
93
93
// Allow new users to sign up for free trials: https://github.com/SkymindIO/pathmind-webapp/issues/2199
94
- innerContent .add (title , badCredentials , emailNotVerified , sessionExpired , createLoginForm (), createSignUp ());
95
- // innerContent.add(title, badCredentials, emailNotVerified, sessionExpired, createLoginForm());
94
+ // innerContent.add(title, badCredentials, emailNotVerified, sessionExpired, createLoginForm(), createSignUp());
95
+ // Removing links to sign up page
96
+ innerContent .add (title , badCredentials , emailNotVerified , sessionExpired , createLoginForm ());
96
97
97
98
Anchor termsLink = new Anchor (termsOfUseUrl , "Terms of Use" );
98
99
termsLink .setTarget ("_blank" );
@@ -174,10 +175,10 @@ public void beforeEnter(BeforeEnterEvent event) {
174
175
event .forwardTo (ProjectsView .class );
175
176
return ;
176
177
}
177
- if (CookieUtils .getCookie ("isFirstTimeVisit" ) == null ) {
178
- CookieUtils .setNotFirstTimeVisitCookie ();
179
- event .forwardTo (SignUpView .class );
180
- }
178
+ // if (CookieUtils.getCookie("isFirstTimeVisit") == null) {
179
+ // CookieUtils.setNotFirstTimeVisitCookie();
180
+ // event.forwardTo(SignUpView.class);
181
+ // }
181
182
add (segmentIntegrator );
182
183
}
183
184
0 commit comments