Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Registration and Login form with GWT

Tags:

java

gwt

Are there any good tutorials on creating a registration form and login screen with password using Google Web Toolkit?

like image 628
B Woods Avatar asked Dec 08 '22 00:12

B Woods


2 Answers

Take a look at the google-web-toolkit-incubator's Login FAQ which describes how to create a login page and store data in a secure fashion.

like image 199
dogbane Avatar answered Dec 09 '22 12:12

dogbane


if you are using AppEngine, this is probably the best tutorial around. http://code.google.com/appengine/docs/java/gettingstarted/usingjsps.html

But even if you arent using the Google AppEngine UserService you can always replace the UserService class with a helper class of your own that can authenticate application users.

like image 23
Amey Avatar answered Dec 09 '22 14:12

Amey