|
@@ -51,7 +51,8 @@ async def submit(request: Request):
|
|
|
lines="""<html><body>
|
|
|
<script> window.location.replace("/a1/index_complete.html?par={0}"); </script>
|
|
|
</body></html>"""
|
|
|
- return HTMLResponse(content=lines.format(str(random.randint(100000,999999))), status_code=200)
|
|
|
+ return RedirectResponse(url='/a1/index_complete.html')
|
|
|
+# return HTMLResponse(content=lines.format(str(random.randint(100000,999999))), status_code=200)
|
|
|
|
|
|
# return result
|
|
|
|