You are on page 1of 7

WORKING

1.Home page(index.html)

Homepage is basically designed using HTML and CSS , This content basic
information about website and its gateway which provide direct path to reach
desired location like REGISTRATION PAGE , or LOGIN PAGE
As this project is on topic of Core banking systems so on , with help of
html and CSS , it is best describe all about our bank that is “BAN”

2. Localhost for homepage(index.py)

This page is completely designed using python , where with the help of FLASK
the homepage(index.html) is hosted on local server of pc , attributes of Flask
banking homepage is rendered and working as a live page ,
RENDER TEMPLATE used for rendering homepage in flask , which is later
get live on port “Http://127.0.0.1:5003”
HOME PAGE (Index.html)

Localhost for Homepage


WORKING

1.Login page
Login page created by using HTML and CSS , This page having
username and password box for users to enter to get login to the dashboard
of their bank accounts , Data that will entered in form which a method post to
send all input entered by user.

2. Localhost for loginpage(login.py)

This is created using python where FLASK(application), which is used to


create a local server in pc , So this file login.py is flask enabled program which
will live our login page on server , so that It can be used for user to get login
to their accounts.

As it is rendering the template of login.html so data passed in form


through post method can recevied in this python code for validation.

Even also this files contain mysql connector which is connected to database
created in sql, some more codes are written in this file which is used to
validate username and password , that is whether the data entered by user is
present In database or not .
Login page(login.html)

Localhost for login page(login.py)


WORKING

1.Registration page
This page is created using HTML and CSS , It contain lots of fields like
username , name , email , phone number . These are columns are provided to
user for creating there new accounts in BANK online , this data are further
sent as this html coding contains form with method as post so all data entered
by new user.

2.Localhost for registration page

This is python code which renders this registration page on offline server
using flask , so that user can enter data to create their accounts .

App route of flash use to connect html to python code so that data entered by
user can be reached , and with request and get module to extract data
entered in registration page

MYSQL connector used in this so that we can transfer all data that is
being extracted by request and get method , with the help of query easily
data transferred to table in database .
REGISTRATION PAGE(regis.html)

Localhost for registration page(regis.py)

You might also like