12 lines
204 B
Python
12 lines
204 B
Python
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def home():
|
|
return render_template('index.html')
|
|
|
|
@app.route('/set/<int:color>')
|
|
def set(color):
|
|
return f'{color}'
|