Skip to main content

Smart Jobb



It is committed to ensuring accessibility for persons with disabilities by identifying, removing and preventing the barriers that might interfere with the ability to obtain goods and services provided by Smart Jobb. Smart Jobb strives at all times to provide its goods and services to customers in a way that respects the dignity and independence of persons with disabilities and is committed to giving people with disabilities the same opportunity to benefit from our services in a similar way as other customers. Smart Jobb strives to ensure that every customer receives equitable treatment with respect to goods and services, without discrimination, and receives the accommodation where required.

      Role of Responsibilities
·         Developed front end website architecture.
·         Designed user interactions on web pages.
·         Developed back web applications.
·         Create servers and databases
·         Designed and integrate APIs.
·         Use curl & rest APIs.
·         Email Configuration
·         Data Base Management
Modules Developed
·         Job Seeker Management
·         Job Poster Management
·       Dynamic Job Search Page Create According to job category and location
·      Dynamic Website Content can be editable from super admin also new web page
·         Super Admin Portal Management
Technology
·         Php Laravel, Ajax, JQuery & JavaScript.
·         Database MySQL

Comments

Popular posts from this blog

Python Program to Make a Simple Calculator

In this example you will learn to create a simple calculator that can add, subtract, multiply or divide depending upon the input from the user. Simple Calculator by Making Functions # Add Function for addition def add(x,y): return x+y # Subtraction Function def subtract(x,y): return x-y # Multiplication Function def multiply(x,y): return x*y # Division Function def divide(x,y): return x/y print("Select operation.") print("1.Add") print("2.Subtract") print("3.Multiply") print("4.Divide") # Take input from the user something like scanf in C language check =input("Enter choice(1/2/3/4):") num1 = int(input("Enter first number:")) num2 = int(input("Enter second number:")) if check=="1": print(num1," + ",num2," = ",add(num1,num2)) elif check=="2": print(num1," - ",num2," = ",subtract(num1,num2)) elif check=...