If you haven't gone through the Getting Started Guide, I highly recommend you do so now -- this will help you a lot with this particular set of requirements: http://code.google.com/appengine/docs/java/gettingstarted/
Basically, you'll want to create a new servlet and implement the doPost method. The request object is passed into doPost so you can access form parameters such as the email address that the user provided. Then you can store these in App Engine's datastore or send an email, whatever you'd like. I'll also point out here that if all you're looking for is user authentication, you don't have to roll your own registration process. App Engine has a Google Accounts service which can authenticate users via their Gmail addresses or other Google accounts without any extra work on your part. This is covered in the Getting Started Guide as well. - Jason On Tue, Sep 22, 2009 at 2:22 AM, anu <[email protected]> wrote: > > Hi i have developed an application using googleappenginesdk with java > using eclipse. and my application is nothing but registration process > first i have developed pages for registration and login pages.once the > usser want to register himself he clicks on register link and he > redirected to registration page and registers himself once he register > i want to fetch or catch (those input fields like > username,password,email id etc that the user has given for the > registration purpose ) and send a mail for confirmation of > registration to the corresponding email id given by the user.So when > user gives all the input fields and click register button a mail has > to be given to the users email id (like gmail )for confirmation .So > how can i define functionality to register button so that the > functionality which iam expecting can be achieved ,please someone help > me with the solution . > > I have created now only html pages and unable to define functionality > to the button ,someone help me > The pages which i have created is > > > home.jsp > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> > <!-- The HTML 4.01 Transitional DOCTYPE declaration--> > <!-- above set at the top of the file will set --> > <!-- the browser's rendering engine into --> > <!-- "Quirks Mode". Replacing this declaration --> > <!-- with a "Standards Mode" doctype is supported, --> > <!-- but may lead to some differences in layout. --> > > <html> > > > <body> > <table> > <tr><td><h3>New User</h3></td></tr><br> > <tr> > <td><a href="register.html"/>Register</td><br></br> > <td><a href="login"/>Login</td> > </tr> > </table> > > </body> > </html> > > > > Success.html > > <html> > <body> > <center><h5>You have Succesfully Registered</h5></center> > </body> > </html> > > > > Register.html > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> > <!-- The HTML 4.01 Transitional DOCTYPE declaration--> > <!-- above set at the top of the file will set --> > <!-- the browser's rendering engine into --> > <!-- "Quirks Mode". Replacing this declaration --> > <!-- with a "Standards Mode" doctype is supported, --> > <!-- but may lead to some differences in layout. --> > > <html> > <body> > <form action="Success.html" method="get"> > FIRST NAME<input type=text name=First Name><br> > LAST NAME<input type=text name=Last Name><br> > EMAIL ID<input type=text name=Email Id><br> > USER NAME<input type=text name=user><br> > PASSWORD<input type=password name=password><br> > <input type=submit value=REGISTER> > </form> > </body> > > </html> > > > > thanks in advance, > > anu > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en -~----------~----~----~----~------~----~------~--~---
