added empty html/css/js files

Cette révision appartient à :
Lynne Megido 2018-11-02 13:13:08 +10:00
Parent 6d7e047f3c
révision 54fdba7207
Signé par: lynnesbian
ID de la clé GPG: FB7B970303ACE499
5 fichiers modifiés avec 5 ajouts et 3 suppressions

1
.gitignore externe
Voir le fichier

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

0
static/script.js Fichier normal
Voir le fichier

0
static/style.css Fichier normal
Voir le fichier

0
templates/landing_page.html Fichier normal
Voir le fichier

7
web.py
Voir le fichier

@ -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():