Change landing page to alt upload page link

This commit is contained in:
alvierahman90 2017-10-25 13:18:46 +01:00
parent 1456e80556
commit 3fdc435ad6

View File

@ -12,10 +12,6 @@ app = Flask(__name__)
app.config['SECRET_KEY'] = os.urandom(24)
@app.route("/")
@app.route("/hello/<name>")
def hello(name=None):
return render_template('hello.html',name=name)
@app.route('/upload', methods=['GET','POST'])
def upload_file():
if request.method == 'POST':