added empty html/css/js files

Esse commit está contido em:
Lynne Megido 2018-11-02 13:13:08 +10:00
commit 54fdba7207
Assinado por: lynnesbian
ID da chave GPG: FB7B970303ACE499
5 arquivos alterados com 5 adições e 3 exclusões

1
.gitignore externo
Ver arquivo

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

0
static/script.js Normal file
Ver arquivo

0
static/style.css Normal file
Ver arquivo

Ver arquivo

7
web.py
Ver arquivo

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