0% found this document useful (0 votes)
20 views7 pages

Project

This document discusses the frontend and backend code for a banking website. It includes: 1) HTML and CSS pages for the home, login, and registration pages. 2) Python Flask code to host the HTML pages locally and render the templates. The Flask code connects to a MySQL database to validate login credentials and store registration data. 3) The home, login, and registration pages are hosted locally at URLs like http://127.0.0.1:5003 using the Python Flask code. Form data is passed between the HTML and Python using methods like POST and extracted using requests.

Uploaded by

nikhily883
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views7 pages

Project

This document discusses the frontend and backend code for a banking website. It includes: 1) HTML and CSS pages for the home, login, and registration pages. 2) Python Flask code to host the HTML pages locally and render the templates. The Flask code connects to a MySQL database to validate login credentials and store registration data. 3) The home, login, and registration pages are hosted locally at URLs like http://127.0.0.1:5003 using the Python Flask code. Form data is passed between the HTML and Python using methods like POST and extracted using requests.

Uploaded by

nikhily883
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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