TpsNandhini's picture
Update app.py
0ee7187 verified
raw
history blame
No virus
13.1 kB
import streamlit as st
import mysql.connector
import bcrypt
import datetime
import re
import pytz
import numpy as np
import pandas as pd
import plotly.express as px
# MySQL Connection
connection = mysql.connector.connect(
host="gateway01.ap-southeast-1.prod.aws.tidbcloud.com",
port=4000,
user="37QUb7dvTn3P6E8.root",
password="MBAg14V0HaMdxwX0"
)
mycursor = connection.cursor(buffered=True)
mycursor.execute("CREATE DATABASE IF NOT EXISTS PerformancePrediction")
mycursor.execute('USE PerformancePrediction')
mycursor.execute('''CREATE TABLE IF NOT EXISTS User_data
(id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(50) UNIQUE NOT NULL,
password VARCHAR(255) NOT NULL,
email VARCHAR(255) UNIQUE NOT NULL,
registered_date TIMESTAMP,
last_login TIMESTAMP)''')
def username_exists(username):
mycursor.execute("SELECT * FROM User_data WHERE username = %s", (username,))
return mycursor.fetchone() is not None
def email_exists(email):
mycursor.execute("SELECT * FROM User_data WHERE email = %s", (email,))
return mycursor.fetchone() is not None
def is_valid_email(email):
pattern = r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$'
return re.match(pattern, email) is not None
def create_user(username, password, email, registered_date):
if username_exists(username):
return 'username_exists'
if email_exists(email):
return 'email_exists'
hashed_password = bcrypt.hashpw(password.encode('utf-8'), bcrypt.gensalt())
mycursor.execute(
"INSERT INTO User_data (username, password, email, registered_date) VALUES (%s, %s, %s, %s)",
(username, hashed_password, email, registered_date)
)
connection.commit()
return 'success'
def verify_user(username, password):
mycursor.execute("SELECT password FROM User_data WHERE username = %s", (username,))
record = mycursor.fetchone()
if record and bcrypt.checkpw(password.encode('utf-8'), record[0].encode('utf-8')):
mycursor.execute("UPDATE User_data SET last_login = %s WHERE username = %s", (datetime.datetime.now(pytz.timezone('Asia/Kolkata')), username))
connection.commit()
return True
return False
def reset_password(username, new_password):
hashed_password = bcrypt.hashpw(new_password.encode('utf-8'), bcrypt.gensalt())
mycursor.execute(
"UPDATE User_data SET password = %s WHERE username = %s",
(hashed_password, username)
)
connection.commit()
# Session state management
if 'sign_up_successful' not in st.session_state:
st.session_state.sign_up_successful = False
if 'login_successful' not in st.session_state:
st.session_state.login_successful = False
if 'reset_password' not in st.session_state:
st.session_state.reset_password = False
if 'username' not in st.session_state:
st.session_state.username = ''
if 'current_page' not in st.session_state:
st.session_state.current_page = 'login'
if 'employee_submitted' not in st.session_state:
st.session_state.employee_submitted = False
# Page styling
st.markdown("""
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f2f6;
}
.big-font {
font-size: 36px !important;
font-weight: bold;
color: #1E88E5;
margin-bottom: 30px;
text-align: center;
}
.stButton > button {
width: 100%;
background-color: #1E88E5;
color: white;
font-weight: bold;
border: none;
padding: 10px 0;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.stButton > button:hover {
background-color: #1565C0;
}
.stTextInput > div > div > input {
border-radius: 5px;
border: 2px solid #90CAF9;
}
.stTextInput > div > div > input:focus {
border-color: #1E88E5;
box-shadow: 0 0 0 1px #1E88E5;
}
.link-text {
color: #1E88E5;
text-align: center;
cursor: pointer;
transition: color 0.3s ease;
}
.link-text:hover {
color: #1565C0;
text-decoration: underline;
}
</style>
""", unsafe_allow_html=True)
# Login page
def login():
st.markdown('<p class="big-font">Performance Prediction Login</p>', unsafe_allow_html=True)
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
with st.form(key='login_form', clear_on_submit=True):
username = st.text_input(label='Username', placeholder='Enter Username')
password = st.text_input(label='Password', placeholder='Enter Password', type='password')
st.markdown("<br>", unsafe_allow_html=True)
if st.form_submit_button('Login'):
if not username or not password:
st.error("Please enter all credentials")
elif verify_user(username, password):
st.success(f"Welcome, {username}!")
st.session_state.login_successful = True
st.session_state.username = username
st.session_state.current_page = 'home'
st.experimental_rerun()
else:
st.error("Incorrect username or password. Please try again or sign up if you don't have an account.")
if not st.session_state.get('login_successful', False):
st.markdown("<br>", unsafe_allow_html=True)
col_a, col_b = st.columns(2)
with col_a:
st.markdown("<div class='link-text'>New user?</div>", unsafe_allow_html=True)
if st.button('Sign Up'):
st.session_state.current_page = 'sign_up'
st.experimental_rerun()
with col_b:
st.markdown("<div class='link-text'>Forgot Password?</div>", unsafe_allow_html=True)
if st.button('Reset Password'):
st.session_state.current_page = 'reset_password'
st.experimental_rerun()
# Sign up page
def signup():
st.markdown('<p class="big-font">Sign Up for Performance Prediction</p>', unsafe_allow_html=True)
with st.form(key='signup_form', clear_on_submit=True):
email = st.text_input(label='Email', placeholder='Enter Your Email')
username = st.text_input(label='Username', placeholder='Enter Your Username')
password = st.text_input(label='Password', placeholder='Enter Your Password', type='password')
re_password = st.text_input(label='Confirm Password', placeholder='Confirm Your Password', type='password')
if st.form_submit_button('Sign Up'):
if not email or not username or not password or not re_password:
st.error("Enter all the Credentials")
elif len(password) <= 3:
st.error("Password too short")
elif password != re_password:
st.error("Passwords do not match! Please Re-enter")
else:
result = create_user(username, password, email, datetime.datetime.now(pytz.timezone('Asia/Kolkata')))
if result == 'success':
st.success("Account created successfully!")
st.session_state.sign_up_successful = True
st.session_state.current_page = 'login'
st.experimental_rerun()
if not st.session_state.get('sign_up_successful', False):
st.markdown("<br>", unsafe_allow_html=True)
st.markdown("<div class='link-text'>Already have an account?</div>", unsafe_allow_html=True)
if st.button('Login'):
st.session_state.current_page = 'login'
st.experimental_rerun()
# Reset password page
def reset_password_page():
st.markdown('<p class="big-font">Reset Password</p>', unsafe_allow_html=True)
with st.form(key='reset_password_form', clear_on_submit=True):
username = st.text_input(label='Username', value='', placeholder='Enter your username')
new_password = st.text_input(label='New Password', type='password', placeholder='Enter new password')
re_password = st.text_input(label='Confirm New Password', type='password', placeholder='Confirm new password')
if st.form_submit_button('Reset Password'):
if not username:
st.error("Enter your username.")
elif not username_exists(username):
st.error("Username not found. Enter a valid username.")
elif not new_password or not re_password:
st.error("Enter all the credentials.")
elif len(new_password) <= 3:
st.error("Password too short. Enter a longer password.")
elif new_password != re_password:
st.error("Passwords do not match! Please re-enter.")
else:
reset_password(username, new_password)
st.success("Password has been reset successfully! Please login with your new password.")
st.session_state.current_page = 'login'
st.experimental_rerun()
st.markdown("<br>", unsafe_allow_html=True)
st.markdown("<div class='link-text'>Remember your password?</div>", unsafe_allow_html=True)
if st.button('Login'):
st.session_state.current_page = 'login'
st.experimental_rerun()
# Home page
def home_page():
st.sidebar.title(f"Welcome, {st.session_state.username}!")
# Sidebar for inputting employee details
st.sidebar.header("Enter Employee Details")
employee_name = st.sidebar.text_input("Employee Name")
employee_id = st.sidebar.text_input("Employee ID")
employee_age = st.sidebar.number_input("Employee Age", min_value=18, max_value=65, value=30)
employee_join_date = st.sidebar.date_input("Joining Date", value=datetime.date(2020, 1, 1))
employee_appraisal_date = st.sidebar.date_input("Last Appraisal Date", value=datetime.date(2023, 1, 1))
if st.sidebar.button("Submit"):
st.session_state.employee_submitted = True
st.sidebar.success(f"Employee {employee_name} (ID: {employee_id}, Age: {employee_age}) details submitted successfully!")
# Main dashboard area
st.title("Performance Prediction Dashboard")
if st.session_state.employee_submitted:
tab1, tab2 = st.tabs(["Overview", "Performance Insights"])
with tab1:
col1, col2 = st.columns(2)
with col1:
st.subheader("Employee Performance Score")
performance_score = np.random.randint(60, 100)
st.metric("Predicted Performance", f"{performance_score}%", "4%")
st.subheader("Key Factors Influencing Performance")
factors = pd.DataFrame({
'Factor': ['Experience', 'Training', 'Projects', 'Teamwork'],
'Impact': [0.3, 0.25, 0.28, 0.17]
})
fig = px.bar(factors, x='Impact', y='Factor', orientation='h', color='Factor',
color_discrete_sequence=px.colors.qualitative.Bold)
st.plotly_chart(fig)
with col2:
st.subheader("Performance Trend")
dates = pd.date_range(start="2023-01-01", end="2023-12-31", freq="M")
performance = np.random.randint(70, 100, size=len(dates))
trend_data = pd.DataFrame({"Date": dates, "Performance": performance})
fig = px.line(trend_data, x="Date", y="Performance", title='Performance Over Time',
line_shape='spline', render_mode='svg', color_discrete_sequence=['#1E88E5'])
st.plotly_chart(fig)
with tab2:
st.subheader("Performance Insights")
st.write(f"Based on the analysis for Employee ID {employee_id}:")
st.write(f"- Current performance is {'above' if performance_score > 80 else 'below'} average")
st.write(f"- Key area for improvement: {'Training' if performance_score < 80 else 'Project Management'}")
st.write(f"- Recommended action: {'Enroll in advanced skills program' if performance_score < 80 else 'Take on leadership role in upcoming project'}")
if st.button("Logout"):
st.session_state.login_successful = False
st.session_state.username = ''
st.session_state.current_page = 'login'
st.experimental_rerun()
# Main app logic
if st.session_state.current_page == 'login':
login()
elif st.session_state.current_page == 'sign_up':
signup()
elif st.session_state.current_page == 'reset_password':
reset_password_page()
elif st.session_state.current_page == 'home':
home_page()
else:
st.error("Page not found or not implemented yet.")