fix: main help

This commit is contained in:
cheeest 2025-04-07 23:38:07 +03:00
parent 05cd1cbd72
commit c766258407
2 changed files with 1 additions and 3 deletions

2
app.py
View File

@ -95,7 +95,7 @@ def fmetadata():
abort(404)
return render_template('task1-metadata.html')
@app.route("/found-me/task1") #TODO
@app.route("/forensic/getimg")
def forensic_task1():
return send_file(f'/tmp/task1/{session['task1_id']}.jpg')

View File

@ -13,12 +13,10 @@ function showPopup() {
function hidePopup() {
const popup = document.getElementById("popup");
popup.classList.remove('slideinHelp');
popup.classList.add('slideoutHelp');
setTimeout(() => {
popup.style.display = "none"
popup.style.position = "absolute"
}, 1000);
}