diff --git a/README.md b/README.md index a40876b..cea892f 100644 --- a/README.md +++ b/README.md @@ -11,4 +11,4 @@ This requires a flowroute account. It uses google to authenticate. But I might a App runs via the following command. > gunicorn3 app:app -This will run and listen to as a daemon. +This will run and listen on a port, probably port 8000 as its default as a daemon. diff --git a/app_settings.py b/app_settings.py index aa551cc..75a2904 100644 --- a/app_settings.py +++ b/app_settings.py @@ -34,8 +34,11 @@ def appsettings(): return flask.render_template('error.html', denymsg = 'You are not currently logged in.', loggedin = False) rows = appdb.getDIDsbyAccount(userid) - dbEmail = appdb.getInfobyEmail(user_info['email']) + accountInfo = appdb.getInfobyEmail(user_info['email']) + # userDBInfo.getInfobyE + pprint.pprint(accountInfo) return flask.render_template('settings.html', user_info = user_info, + account_info = accountInfo, dids = rows, loggedin = True) diff --git a/static/main.css b/static/main.css index cfeaa57..5d77ef6 100644 --- a/static/main.css +++ b/static/main.css @@ -60,3 +60,8 @@ a:disabled {color: #9BB291;} font-size:2em; color: #B0C592; } + +#navblock { + background-color: #2D3F3E; + font-size: 2em; +} diff --git a/templates/about.html b/templates/about.html index 4b3187f..6c9b70a 100644 --- a/templates/about.html +++ b/templates/about.html @@ -1,26 +1,28 @@ - {% include 'include/header.html' %} -
We're all about getting thewords out and allowing us to communicate securely to friends and loved ones.
This site is still under active development and subject to change. For those who are interested in helping with development or testing hit me up on my GitHub sms-proj Page.
We aim to take bitcoin and other crypto currencies to allow people to use SMS at home on their computer or on the go as a backup on their phone or tablet.
-We are still looking for testers or developers so, if you're interested and don't mind a work - in progress, then maybe you can help out by sending an email to submit at athnex dot com. Or better yet, message me on our - GitHub. This is a side project of mine so development will be slow - for as long as its only me. Thanks for your interest!
-We are still looking for testers or developers so, if you're interested and don't mind a work + in progress, then maybe you can help out by sending an email to submit at athnex dot com. Or better yet, message me on our + GitHub. This is a side project of mine so development will be slow + for as long as its only me. Thanks for your interest!
+