BrainBot / pages /error.py
aminaj's picture
Create error.py
e637e1f verified
raw
history blame contribute delete
476 Bytes
import streamlit as st
# Custom CSS
with open('styles.css') as f:
css = f.read()
st.markdown(f'<style>{css}</style>', unsafe_allow_html=True)
## LOGO and TITLE
## -------------------------------------------------------------------------------------------
# Show the logo and title side by side
col1, col2 = st.columns([1, 4])
with col1:
st.image("brainbot.png", width=100)
with col2:
st.title("Error")
st.error("Oops - Something went wrong! Please try again.")