from flask import Flask, redirect, url_for
app = Flask(__name__)

creds = { 'root':'backpain', 'fred':'flinstone', 'wilma':'pebbles' }

count = 0
@app.route('/')
def hello_admin():
   str = "This is not a list of my users:<br>\n"
   for username in creds:
      str = str + username + ":" + creds[username] + "<br>\n"
   return str

if __name__ == '__main__':
   app.run('198.110.204.9', 8081, debug = True)
