ravinder2024 commited on
Commit
ea338fe
·
verified ·
1 Parent(s): e4b1153

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -207,7 +207,10 @@ def recognize_face():
207
  import io
208
 
209
  def view_attendance_records():
 
210
  st.subheader("Attendance Records")
 
 
211
  cursor.execute("SELECT * FROM attendance ORDER BY date DESC, time DESC")
212
  records = cursor.fetchall()
213
 
@@ -221,7 +224,7 @@ def view_attendance_records():
221
  df.to_excel(writer, index=False, sheet_name='Attendance')
222
  towrite.seek(0)
223
 
224
- # Add a download button
225
  st.download_button(
226
  label="Download Attendance Records",
227
  data=towrite,
@@ -232,6 +235,7 @@ def view_attendance_records():
232
  st.info("No attendance records available.")
233
 
234
 
 
235
  # --- Main Logic ---
236
  if __name__ == "__main__":
237
  st.title("EMOTION-MARK-AI (FACIAL SENTIMENT ANALYSIZED ATTENDANCE TRACKER)")
 
207
  import io
208
 
209
  def view_attendance_records():
210
+ # Styled Heading
211
  st.subheader("Attendance Records")
212
+ st.markdown("<h3 style='text-align: center;'>Download Attendance Records</h3>", unsafe_allow_html=True)
213
+
214
  cursor.execute("SELECT * FROM attendance ORDER BY date DESC, time DESC")
215
  records = cursor.fetchall()
216
 
 
224
  df.to_excel(writer, index=False, sheet_name='Attendance')
225
  towrite.seek(0)
226
 
227
+ # Add a download button with the custom heading
228
  st.download_button(
229
  label="Download Attendance Records",
230
  data=towrite,
 
235
  st.info("No attendance records available.")
236
 
237
 
238
+
239
  # --- Main Logic ---
240
  if __name__ == "__main__":
241
  st.title("EMOTION-MARK-AI (FACIAL SENTIMENT ANALYSIZED ATTENDANCE TRACKER)")