#!/usr/local/bin/python3.3 import cgi import cgitb import datetime from functions import get_cookies, phead, ptail, ptmpbody cgitb.enable() cookie = get_cookies() if cookie: print(cookie) fname = cookie["fname"].value lname = cookie["lname"].value name = " ".join((fname, lname)) admin = cookie["admin"].value print("Content-type: text/html\n") print("""

You are logged in- page does not exist. Please log out to reset password

""") else: print(""" DASR: Database for the Analysis of Sequencing Reads

Please see your admin to reset your password

""") ptail()