I’m currently doing a clock in and out for users that starts a chronometer when logging in, the issue that I have is that I want to save that live chronometer when reloading the page, don’t know what could be a recommendation to save live chronometer
Just a small snippet of my code:
for hour in range(24):
for minute in range(60):
for segs in range(60):
timer = "{:02d}:{:02d}:{:02d}".format(hour,minute,segs)
st.markdown(f'<p class="big-font-hour">{timer}</p>', unsafe_allow_html=True)
time.sleep(1)