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
-~----------~----~----~----~------~----~------~--~---