Commit 0b53af1b by Tu Nombre

erro de copia en el busacador

1 parent 9bc0b9dc
Showing 1 changed file with 10 additions and 0 deletions
......@@ -75,6 +75,16 @@ def historico():
bypass = False
)
@app.route('/buscador')
def buscador():
if "login" not in request.cookies:
return redirect(url_for("login"))
return render_template(
"buscador.html",
bypass = False
)
@app.route('/login', methods = ['GET', 'POST'])
def login():
if request.method == "GET":
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!