To design a website to perform mathematical calculations in server side.
Create the repository from GitHub
Create Django Admin project.
Create a New App.
Create python programs for views and urls.
Create a HTML file of forms.
Publish the website in the given URL.
''' math.html
<title>Area of Rectangle</title> <style type="text/css"> body { background-color:red; } .edge { width: 1440px; margin-left: auto; margin-right: auto; padding-top: 250px; padding-left: 300px; } .box { display:block; border: Thick dashed lime; width: 500px; min-height: 300px; font-size: 20px; background-color:blue; } .formelt{ color:orange; text-align: center; margin-top: 7px; margin-bottom: 6px; } h1 { color:rgb(255, 0, 179); text-align: center; padding-top: 20px; } </style>views.py
from django.shortcuts import render def rectarea(request): context={} context['area'] = "0" context['l'] = "0" context['b'] = "0" if request.method == 'POST': print("POST method is used") l = request.POST.get('length','0') b = request.POST.get('breadth','0') print('request=',request) print('Length=',l) print('Breadth=',b) area = int(l) * int(b) context['area'] = area context['l'] = l context['b'] = b print('Area=',area) return render(request,'myapp/math.html',context)
urls.py
from django.contrib import admin from django.urls import path from myapp import views urlpatterns = [ path('admin/', admin.site.urls), path('areaofrectangle/',views.rectarea,name="areaofrectangle"), path('',views.rectarea,name="areaofrectangleroot") ] '''
The program for implementing server side processing is completed successfully.

