diff --git a/README.md b/README.md index d2e0055e2..db49fc037 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ # Ex.05 Design a Website for Server Side Processing -## Date: +## Date:20.10.2025 ## AIM: - To design a website to calculate the power of a lamp filament in an incandescent bulb in the server side. + To design a website to calculate the BMI in the server side. ## FORMULA: -P = I2R -
P --> Power (in watts) -
 I --> Intensity -
 R --> Resistance +BMI = W/(H)2 +
BMI =BODY MASS INDEX +
 H =HEIGHT +
 W =WEIGHT ## DESIGN STEPS: @@ -32,13 +32,81 @@ Create a HTML file to implement form based input and output. Publish the website in the given URL. ## PROGRAM : +``` + + + BMI Calculator + + + +

Guhan.K (25014479)

+

Body Mass Index (BMI) Calculator

+
+ {% csrf_token %} +
+ + +
+
+ + +
+
+ +
+

Your BMI: {{bmi}}

+
+ + +``` ## SERVER SIDE PROCESSING: - +![alt text]() ## HOMEPAGE: - +![alt text]() ## RESULT: The program for performing server side processing is completed successfully.