added empty html/css/js files

This commit is contained in:
Lynne Megido 2018-11-02 13:13:08 +10:00
förälder 6d7e047f3c
incheckning 54fdba7207
Signerad av: lynnesbian
GPG-nyckel ID: FB7B970303ACE499
5 ändrade filer med 5 tillägg och 3 borttagningar

1
.gitignore vendored
Visa fil

@ -1,3 +1,4 @@
meta.json
auth.json
database.db

0
static/script.js Normal file
Visa fil

0
static/style.css Normal file
Visa fil

Visa fil

7
web.py
Visa fil

@ -15,11 +15,12 @@ c = db.cursor()
c.execute("CREATE TABLE IF NOT EXISTS `data` (username VARCHAR NOT NULL, appid VARCHAR NOT NULL, appsecret VARCHAR NOT NULL, secret VARCHAR NOT NULL, latest_post VARCHAR)")
app = Flask(cfg['name'])
app.secret_key = cfg['flask_key']
@app.route('/login')
def auth():
@app.route('/')
def main():
return "test"
@app.route('/internal/auth_a')
def internal_auth_a():