13 lines
194 B
Python
13 lines
194 B
Python
import sqlite3
|
|
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return render_template('maint.html')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|