ifiecas commited on
Commit
acd7512
·
verified ·
1 Parent(s): 1715968

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -4
app.py CHANGED
@@ -132,7 +132,22 @@ st.markdown("""
132
  /* Banner image styling */
133
  .banner-image {
134
  width: 100%;
135
- margin-bottom: 1rem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  }
137
  </style>
138
  """, unsafe_allow_html=True)
@@ -348,9 +363,10 @@ with tab2:
348
  st.markdown("[Ivy Fiecas-Borjal](https://ifiecas.com/)")
349
  st.write("Inspired by an assessment in BCO6008 Predictive Analytics class in Victoria University (Melbourne) with Dr. Omid Ameri Sianaki")
350
 
351
- # Footer
352
  st.markdown("""
353
- <div class="footer">
354
- <p 2025 AI-Powered Loan Approval System | <a href="#" style="color: #7950F2;">Terms of Service</a> | <a href="#" style="color: #7950F2;">Privacy Policy</a></p>
 
355
  </div>
356
  """, unsafe_allow_html=True)
 
132
  /* Banner image styling */
133
  .banner-image {
134
  width: 100%;
135
+ margin-bottom: 1.5rem;
136
+ border-radius: 10px;
137
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
138
+ }
139
+
140
+ /* Footer disclaimer */
141
+ .footer-disclaimer {
142
+ text-align: center;
143
+ margin-top: 2rem;
144
+ padding: 1rem;
145
+ border-top: 1px solid #EEEEEE;
146
+ font-size: 0.9rem;
147
+ color: #666666;
148
+ line-height: 1.5;
149
+ background-color: var(--light-gray);
150
+ border-radius: 5px;
151
  }
152
  </style>
153
  """, unsafe_allow_html=True)
 
363
  st.markdown("[Ivy Fiecas-Borjal](https://ifiecas.com/)")
364
  st.write("Inspired by an assessment in BCO6008 Predictive Analytics class in Victoria University (Melbourne) with Dr. Omid Ameri Sianaki")
365
 
366
+ # Footer with disclaimer
367
  st.markdown("""
368
+ <div class="footer-disclaimer">
369
+ <p><strong>Educational Project Disclaimer:</strong> This application is a prototype created to demonstrate machine learning model deployment and is not an actual financial service. The loan approval decisions are based on a trained model for educational purposes only and should not be used for real financial decisions.</p>
370
+ <p>© 2025 SmartLoanAI - Machine Learning Showcase Project</p>
371
  </div>
372
  """, unsafe_allow_html=True)