Profile page
run 07_test_hw7.sql

go to the web app, login using 'charlie', 'charliepass'

go to the profile page and make sure they list the login name 
and email address of charlie:
charlie, charlie@cmu.edu
Movies he likes:
 login_name |   mtitle   
------------+------------
 charlie    | Armageddon
 charlie    | TRON
 charlie    | Bolt
 charlie    | Casino
(4 rows)


to go the reports page:


THere should be:
5 registered users
THe movies no one has liked:
--------------
 Desperado
 Godfather
 GoldenEye
 Heat
 Philadelphia
 Popeye
 RoboCop
 Rocky
 Spaceballs
 Speed
 Stargate
 Terminator
 Underworld
(13 rows)

The avid users:
Version 1 (print only those with max number of likes):

 login_name | likes_n 
------------+---------
 bob        |       4
 charlie    |       4
 david      |       4
(3 rows)


or, version 2, print all, ordered by num of likes:

 login_name | likes_n 
------------+---------
 bob        |       4
 charlie    |       4
 david      |       4
 ekaterina  |       3
 anca       |       2
(5 rows)
