27 lines
		
	
	
		
			641 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			641 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 | |
| <html>
 | |
| <head>
 | |
|     <title>Calculate BMI</title>
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
| <form name="bmiForm" action="calculateServlet" method="POST">
 | |
| 
 | |
|     <table>
 | |
|         <tr>
 | |
|             <td>Your Weight (kg) :</td>
 | |
|             <td><input type="text" name="weight"/></td>
 | |
|         </tr>
 | |
|         <tr>
 | |
|             <td>Your Height (m) :</td>
 | |
|             <td><input type="text" name="height"/></td>
 | |
|         </tr>
 | |
|         <th><input type="submit" value="Submit" name="find"/></th>
 | |
|         <th><input type="reset" value="Reset" name="reset" /></th>
 | |
|     </table>
 | |
|     <h2>${bmi}</h2>
 | |
| </form>
 | |
| 
 | |
| </body>
 | |
| </html>
 |