chrishjorth / sharingear-static

HTML, CSS, JavaScript files, Images, etc.
0 stars 0 forks source link

Dashboard > User Profile > needs some tweaks and editing #312

Closed mirceasharingear closed 9 years ago

mirceasharingear commented 9 years ago

WHATS WRONG: There is too much practical (boring) information that clogs up the dashboard, and less of the "cool-me-me-me" stuff.

HOW SHOULD IT BE: Move the following fields to the settings section:

and add the following new fields and checkboxes (like in the attached picture)

1_dashboard_yourprofile

chrishjorth commented 9 years ago

Shouldn't email be moved to settings as well?

mirceasharingear commented 9 years ago

Good call, here is a new preview of the dashboard section. Please also notice a small addition, the text underneath the "Company name".

draftdashboard

chrishjorth commented 9 years ago

Added table 'user_types' to DB:

CREATE TABLE user_types ( id int(11) NOT NULL AUTO_INCREMENT, type_name varchar(45) NOT NULL, PRIMARY KEY (id), UNIQUE KEY type_name_UNIQUE (type_name) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf16;

Added table 'has_user_types' to DB:

CREATE TABLE has_user_types ( id int(11) NOT NULL AUTO_INCREMENT, user_id int(11) NOT NULL, user_type_id int(11) NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf16;

chrishjorth commented 9 years ago

Also added fields 'band_name' and 'company_name' to 'users' table in DB.