Subversion Repositories SmartDukaan

Rev

Rev 832 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 832 Rev 925
Line 42... Line 42...
42
		super();
42
		super();
43
	}
43
	}
44
 
44
 
45
 
45
 
46
    public String index() throws SecurityException, IOException {
46
    public String index() throws SecurityException, IOException {
-
 
47
    	if(userinfo.isLoggedIn()){
-
 
48
    		return "success";
-
 
49
    	}
47
    	htmlSnippets.put("REGISTRATION_HEADER",pageLoader.getRegistrationHeaderHtml());
50
    	htmlSnippets.put("REGISTRATION_HEADER",pageLoader.getRegistrationHeaderHtml());
48
    	htmlSnippets.put("REGISTRATION_FORM",pageLoader.getRegistrationFormHtml());
51
    	htmlSnippets.put("REGISTRATION_FORM",pageLoader.getRegistrationFormHtml());
49
    	return "index";
52
    	return "index";
50
    }
53
    }
51
 
54