ESI15 | c99fcf0 | 2015-11-18 16:01:42 +0530 | [diff] [blame] | 1 | <%@ page language="java" contentType="text/html; charset=ISO-8859-1" |
| 2 | pageEncoding="ISO-8859-1"%> |
| 3 | <%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%> |
| 4 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| 5 | <html> |
| 6 | <head> |
Suresh.Reddy | d8f8d82 | 2015-11-19 11:38:28 +0530 | [diff] [blame] | 7 | |
ESI15 | c99fcf0 | 2015-11-18 16:01:42 +0530 | [diff] [blame] | 8 | <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
Suresh.Reddy | d8f8d82 | 2015-11-19 11:38:28 +0530 | [diff] [blame] | 9 | <title>Registration Page EMP</title> |
ESI15 | c99fcf0 | 2015-11-18 16:01:42 +0530 | [diff] [blame] | 10 | </head> |
| 11 | <body> |
ESI15 | b11c39e | 2015-11-30 13:05:31 +0530 | [diff] [blame] | 12 | <<<<<<< HEAD |
ESI15 | 3058b0b | 2015-11-20 16:13:03 +0530 | [diff] [blame] | 13 | <h1>Cognizant Test </h1> |
ESI15 | b11c39e | 2015-11-30 13:05:31 +0530 | [diff] [blame] | 14 | ======= |
Suresh Reddy | 3181778 | 2015-12-15 12:02:10 +0530 | [diff] [blame^] | 15 | <h1>Cognizant Technology </h1> |
ESI15 | b11c39e | 2015-11-30 13:05:31 +0530 | [diff] [blame] | 16 | >>>>>>> 46b94971157004bc4e2b04087cbc98cdd0caf8ef |
ESI15 | c99fcf0 | 2015-11-18 16:01:42 +0530 | [diff] [blame] | 17 | <form:form method="POST" commandName="user"> |
Suresh.Reddy | d8f8d82 | 2015-11-19 11:38:28 +0530 | [diff] [blame] | 18 | |
ESI15 | c99fcf0 | 2015-11-18 16:01:42 +0530 | [diff] [blame] | 19 | <table> |
| 20 | <tr> |
| 21 | <td>User Name :</td> |
| 22 | <td><form:input path="name" /></td> |
| 23 | </tr> |
| 24 | <tr> |
| 25 | <td>Password :</td> |
| 26 | <td><form:password path="password" /></td> |
| 27 | </tr> |
| 28 | <tr> |
| 29 | <td>Gender :</td> |
| 30 | <td><form:radiobutton path="gender" value="M" label="M" /> |
| 31 | <form:radiobutton path="gender" value="F" label="F" /></td> |
| 32 | </tr> |
| 33 | <tr> |
| 34 | <td>Country :</td> |
| 35 | <td><form:select path="country"> |
| 36 | <form:option value="0" label="Select" /> |
| 37 | <form:option value="1" label="India" /> |
| 38 | <form:option value="2" label="USA" /> |
| 39 | <form:option value="3" label="UK" /> |
| 40 | </form:select></td> |
| 41 | </tr> |
| 42 | <tr> |
| 43 | <td>About you :</td> |
| 44 | <td><form:textarea path="aboutYou" /></td> |
| 45 | </tr> |
| 46 | <tr> |
| 47 | <td>Community :</td> |
| 48 | <td><form:checkbox path="community" value="Spring" |
| 49 | label="Spring" /> <form:checkbox path="community" value="Hibernate" |
| 50 | label="Hibernate" /> <form:checkbox path="community" value="Struts" |
| 51 | label="Struts" /></td> |
| 52 | </tr> |
| 53 | <tr> |
| 54 | <td></td> |
| 55 | <td><form:checkbox path="mailingList" |
| 56 | label="Would you like to join our mailinglist?" /></td> |
| 57 | </tr> |
| 58 | <tr> |
| 59 | <td colspan="2"><input type="submit"></td> |
| 60 | </tr> |
| 61 | </table> |
| 62 | </form:form> |
| 63 | |
| 64 | </body> |
| 65 | </html> |