-
Notifications
You must be signed in to change notification settings - Fork 3
/
Home.py
52 lines (37 loc) · 1.65 KB
/
Home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import streamlit as st
from PIL import Image
image2=Image.open('assets/logo2.png')
st.set_page_config(
page_title="EligiLoan",
page_icon=image2,
)
image = Image.open('assets/poster.jpg')
st.image(image, caption='ELIGILOAN')
st.write("# Welcome to Eligiloan! 👋")
with st.sidebar:
st.write(f'''
<a target="blank" href="https://eligiloan-eda.vercel.app/">
<button style=" border-color: orange; padding:10px 20px; background-color: #fa6400f0; color:white; border: none; border-radius: .25rem;" >
View EDA report
</button>
</a>
''',
unsafe_allow_html=True
)
st.markdown(
"""
## A step-by-step guide
The process is quite straightforward. BOB offers loans to eligible applicants with strong financial profiles.
Individuals need to provide their basic personal, employment, income and property details to know if you are fit to apply for a loan.
### 1 . Login
Step one is the login part, you just have to work your way through the following simple steps.
- Enter your mobile number
- Enter the OTP recieved
- accept consent in the Safe portal
### 2. Loan page
Once you login, you will be redirected to the loan page.
- Offer all relevant details such as loan amount, loan history, income, etc.
- Click on the submit option once you have filled in all the details.
- Our algorithm will assess your eligibility based on the details provided by you and you will be awarded with a `yes` or a `no`.
"""
)