Changes:
New Pages:
Minor changes to css/style.css
Usage:
Table for users notes.
CREATE TABLE IF NOT EXISTS `site_users_notes` ( `id` double NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `comment` text NOT NULL, `comment_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `comment_by` int(11) NOT NULL, `type_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Usage:
Table for users work date.
CREATE TABLE IF NOT EXISTS `site_users_ext` ( `user_id` double NOT NULL, PRIMARY KEY (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
New Pages:
Profile – Manage My Profile tab – it contains company name and address, contact person, username, email, and password. To update your data or to change your password use Update button.
Admin Area: