├── .gitignore ├── LICENSE ├── README.md ├── config.json └── src ├── actions └── index.js ├── components ├── app.js ├── change-password.js ├── change-password │ └── password-field.js ├── change-secrets.js ├── change-theme.js ├── color-card.js ├── edit-profile.js ├── edit-profile │ ├── profile-card.js │ └── setting-info.js ├── input-field │ ├── boolean-field.js │ ├── choice-field.js │ ├── date-field.js │ ├── decimal-field.js │ ├── email-field.js │ ├── field.js │ ├── index.js │ ├── integer-field.js │ ├── no-field.js │ ├── read-field.js │ ├── text-field.js │ └── textarea-field.js ├── manage-communications.js ├── manage-communications │ └── sublist.js ├── manage-sessions.js ├── manage-sessions │ ├── session-element-description.js │ └── session-element.js └── nav-segment.js ├── css ├── app.css ├── communications.css ├── edit-profile.css ├── field.css ├── manage-sessions.css ├── nav-segment.css └── theme.css ├── index.js ├── reducers ├── biologicalSettings.js ├── changePassword.js ├── changeSecret.js ├── contactSettings.js ├── financialSettings.js ├── index.js ├── manageSessions.js ├── politicalSettings.js ├── residentialSettings.js ├── subscriptionCategoryList.js └── whoAmI.js ├── urls.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Settings 2 | 3 | > Omniport service frontend 4 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/config.json -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/components/change-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/change-password.js -------------------------------------------------------------------------------- /src/components/change-password/password-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/change-password/password-field.js -------------------------------------------------------------------------------- /src/components/change-secrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/change-secrets.js -------------------------------------------------------------------------------- /src/components/change-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/change-theme.js -------------------------------------------------------------------------------- /src/components/color-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/color-card.js -------------------------------------------------------------------------------- /src/components/edit-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/edit-profile.js -------------------------------------------------------------------------------- /src/components/edit-profile/profile-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/edit-profile/profile-card.js -------------------------------------------------------------------------------- /src/components/edit-profile/setting-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/edit-profile/setting-info.js -------------------------------------------------------------------------------- /src/components/input-field/boolean-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/boolean-field.js -------------------------------------------------------------------------------- /src/components/input-field/choice-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/choice-field.js -------------------------------------------------------------------------------- /src/components/input-field/date-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/date-field.js -------------------------------------------------------------------------------- /src/components/input-field/decimal-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/decimal-field.js -------------------------------------------------------------------------------- /src/components/input-field/email-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/email-field.js -------------------------------------------------------------------------------- /src/components/input-field/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/field.js -------------------------------------------------------------------------------- /src/components/input-field/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/index.js -------------------------------------------------------------------------------- /src/components/input-field/integer-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/integer-field.js -------------------------------------------------------------------------------- /src/components/input-field/no-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/no-field.js -------------------------------------------------------------------------------- /src/components/input-field/read-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/read-field.js -------------------------------------------------------------------------------- /src/components/input-field/text-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/text-field.js -------------------------------------------------------------------------------- /src/components/input-field/textarea-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/input-field/textarea-field.js -------------------------------------------------------------------------------- /src/components/manage-communications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/manage-communications.js -------------------------------------------------------------------------------- /src/components/manage-communications/sublist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/manage-communications/sublist.js -------------------------------------------------------------------------------- /src/components/manage-sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/manage-sessions.js -------------------------------------------------------------------------------- /src/components/manage-sessions/session-element-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/manage-sessions/session-element-description.js -------------------------------------------------------------------------------- /src/components/manage-sessions/session-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/manage-sessions/session-element.js -------------------------------------------------------------------------------- /src/components/nav-segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/components/nav-segment.js -------------------------------------------------------------------------------- /src/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/css/app.css -------------------------------------------------------------------------------- /src/css/communications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/css/communications.css -------------------------------------------------------------------------------- /src/css/edit-profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/css/edit-profile.css -------------------------------------------------------------------------------- /src/css/field.css: -------------------------------------------------------------------------------- 1 | .field-container{ 2 | margin: 0 !important; 3 | } -------------------------------------------------------------------------------- /src/css/manage-sessions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/css/manage-sessions.css -------------------------------------------------------------------------------- /src/css/nav-segment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/css/nav-segment.css -------------------------------------------------------------------------------- /src/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/css/theme.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/biologicalSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/biologicalSettings.js -------------------------------------------------------------------------------- /src/reducers/changePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/changePassword.js -------------------------------------------------------------------------------- /src/reducers/changeSecret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/changeSecret.js -------------------------------------------------------------------------------- /src/reducers/contactSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/contactSettings.js -------------------------------------------------------------------------------- /src/reducers/financialSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/financialSettings.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/manageSessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/manageSessions.js -------------------------------------------------------------------------------- /src/reducers/politicalSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/politicalSettings.js -------------------------------------------------------------------------------- /src/reducers/residentialSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/residentialSettings.js -------------------------------------------------------------------------------- /src/reducers/subscriptionCategoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/subscriptionCategoryList.js -------------------------------------------------------------------------------- /src/reducers/whoAmI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/reducers/whoAmI.js -------------------------------------------------------------------------------- /src/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/urls.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-settings/HEAD/src/utils.js --------------------------------------------------------------------------------