From a519c1856b4bf510ee3794e7ab9bc3b27a3865ba Mon Sep 17 00:00:00 2001 From: peregr1nus Date: Thu, 11 Dec 2025 11:18:56 +0900 Subject: [PATCH] =?UTF-8?q?step5=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app.py b/app.py index 6ad4d78..7f9dfd0 100644 --- a/app.py +++ b/app.py @@ -149,6 +149,10 @@ def step4(): @require_auth def step5(): """5단계: 간증문 입력""" + if request.method == 'GET': + testimony = session.get('testimony', {}) + return render_template('step5.html', testimony=testimony) + if request.method == 'POST': data = request.get_json() session['testimony'] = data