Skip to content

Instantly share code, notes, and snippets.

@kenbellows
kenbellows / fiddle.css
Last active March 7, 2016 20:43
Simple HTML table with sorting, filtering, and pagination implemented with Angular.js
.pointer-cursor {
cursor: pointer;
}
#people-table {
table-layout: fixed;
}
#filter {
margin: 0;
def login():
print('Welcome to the eHealth program, please sign in')
with open ('users.csv') as csvfile:
database = csv.DictReader(csvfile)
loggedin = False
while loggedin != True:
Username = input('Fill in your username: ')
Password = input('Fill in your password: ')
for row in database: