├── .github ├── FUNDING.yml └── workflows │ └── automated.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CoCreate.config.js ├── LICENSE ├── README.md ├── json ├── blocks.json ├── modules.json └── tags.json ├── package.json ├── prettier.config.js ├── release.config.js └── src ├── 403.html ├── 404.html ├── activities └── datatable.html ├── assets ├── background.png ├── favicon.ico ├── icon.png ├── icons │ ├── icon-128x128.png │ ├── icon-144x144.png │ ├── icon-152x152.png │ ├── icon-192x192.png │ ├── icon-256x256.png │ ├── icon-384x384.png │ ├── icon-512x512.png │ ├── icon-72x72.png │ ├── icon-96x96.png │ ├── no-img.jpg │ └── screenshot-1.png ├── logo.png └── svg │ ├── address-book.svg │ ├── align-center.svg │ ├── align-justify.svg │ ├── align-left.svg │ ├── align-right.svg │ ├── angle-down.svg │ ├── angle-left.svg │ ├── angle-up.svg │ ├── arrow-down.svg │ ├── arrow-left.svg │ ├── arrow-right.svg │ ├── arrow-up.svg │ ├── balance-scale.svg │ ├── blog.svg │ ├── bold.svg │ ├── boxes.svg │ ├── brain.svg │ ├── broadcast-tower.svg │ ├── building.svg │ ├── calendar-alt.svg │ ├── calendar-day.svg │ ├── calendar-week.svg │ ├── camera.svg │ ├── check-circle.svg │ ├── city.svg │ ├── clipboard-list.svg │ ├── clock.svg │ ├── clone.svg │ ├── cloud-upload-alt.svg │ ├── code.svg │ ├── cog.svg │ ├── cogs.svg │ ├── comment-alt.svg │ ├── comments.svg │ ├── compress.svg │ ├── copy.svg │ ├── credit-card.svg │ ├── cubes.svg │ ├── database.svg │ ├── desktop.svg │ ├── directions.svg │ ├── ellipsis-v.svg │ ├── envelope.svg │ ├── expand.svg │ ├── eye-slash.svg │ ├── eye.svg │ ├── facebook-f.svg │ ├── facebook.svg │ ├── file-code.svg │ ├── file-csv.svg │ ├── file-download.svg │ ├── file-excel.svg │ ├── file-export.svg │ ├── file-image.svg │ ├── file-import.svg │ ├── file-invoice-dollar.svg │ ├── file-invoice.svg │ ├── file-pdf.svg │ ├── file-upload.svg │ ├── folder-open.svg │ ├── folder.svg │ ├── font.svg │ ├── funnel-dollar.svg │ ├── github.svg │ ├── globe.svg │ ├── google-plus-g.svg │ ├── graduation-cap.svg │ ├── hat-wizard.svg │ ├── heading.svg │ ├── heart.svg │ ├── history.svg │ ├── home.svg │ ├── html5.svg │ ├── images.svg │ ├── industry.svg │ ├── info.svg │ ├── instagram.svg │ ├── italic.svg │ ├── key.svg │ ├── laptop.svg │ ├── link.svg │ ├── linkedin-in.svg │ ├── list.svg │ ├── minus.svg │ ├── mobile-alt.svg │ ├── mobile.svg │ ├── money-bill-wave.svg │ ├── paint-brush.svg │ ├── palette.svg │ ├── pencil-alt.svg │ ├── phone.svg │ ├── photo-video.svg │ ├── pinterest-p.svg │ ├── play.svg │ ├── plug.svg │ ├── plus-square.svg │ ├── plus.svg │ ├── print.svg │ ├── project-diagram.svg │ ├── quote-left.svg │ ├── quote-right.svg │ ├── redo-alt.svg │ ├── reply.svg │ ├── save.svg │ ├── search.svg │ ├── server.svg │ ├── shapes.svg │ ├── share-alt.svg │ ├── shopping-cart.svg │ ├── sign-in-alt.svg │ ├── sign-out-alt.svg │ ├── sliders-h.svg │ ├── sort-down.svg │ ├── sort-up.svg │ ├── sort.svg │ ├── square.svg │ ├── star-half-alt.svg │ ├── star.svg │ ├── sticky-note.svg │ ├── store.svg │ ├── stream.svg │ ├── strikethrough.svg │ ├── tablet-alt.svg │ ├── tachometer-alt.svg │ ├── tags.svg │ ├── tasks.svg │ ├── th-large.svg │ ├── th.svg │ ├── thumbs-down.svg │ ├── thumbs-up.svg │ ├── times.svg │ ├── trash-alt.svg │ ├── trash.svg │ ├── twitter.svg │ ├── underline.svg │ ├── undo-alt.svg │ ├── unlink.svg │ ├── user.svg │ ├── users.svg │ ├── wallet.svg │ ├── window-maximize.svg │ ├── window-minimize.svg │ ├── window-restore.svg │ └── youtube.svg ├── blocks ├── datatable.html └── form.html ├── blog ├── datatable.html └── form.html ├── builder ├── components │ ├── filetree.html │ ├── left-panel.html │ ├── right-panel.html │ └── settings.html ├── index.css └── index.html ├── calendar ├── form.html ├── index.css └── index.html ├── call-center ├── green.gif ├── index.css ├── index.html └── orange.gif ├── code-editor ├── index.css └── index.html ├── companies ├── datatable.html └── form.html ├── components ├── datatable.html └── form.html ├── contacts ├── datatable.html └── form.html ├── dashboard ├── business-checklist │ └── index.html ├── charts │ ├── charts.1.html │ └── charts.html ├── circle-progressbar │ └── circle.html ├── form.html ├── index.html └── test.html ├── database ├── form.html └── index.html ├── domains └── index.html ├── email ├── compose.html ├── index.html └── settings.html ├── estimates ├── datatable.html ├── form.html └── index.html ├── expenses ├── datatable.html └── form.html ├── files ├── datatable.html └── form.html ├── fleet-tracking ├── index.css └── index.html ├── image-editor └── index.html ├── index.css ├── index.html ├── industries ├── datatable.html └── form.html ├── invoices ├── datatable.html ├── form.html └── index.html ├── items ├── datatable.html └── form.html ├── keys ├── datatable.html └── form.html ├── manifest.webmanifest ├── marketplace ├── form.html ├── item.html └── list.html ├── module-templates ├── datatable.html ├── form.html └── templates │ ├── blank.html │ ├── datatable.html │ ├── form.html │ └── kanban.html ├── module-views ├── datatable.html └── form.html ├── modules ├── datatable.html └── form.html ├── offline.html ├── organizations ├── creator.html ├── datatable.html └── form.html ├── payments ├── datatable.html ├── form.html └── settings.html ├── potentials ├── datatable.html └── form.html ├── projects ├── datatable.html ├── form.html └── kanban.html ├── service-worker.js ├── settings └── index.html ├── signin.html ├── signup.html ├── social └── index.html ├── tags ├── datatable.html └── form.html ├── tasklists ├── datatable.html └── form.html ├── university ├── datatable.html └── form.html ├── users ├── datatable.html ├── form.html └── profile.html ├── wallet └── index.html ├── website-pages ├── datatable.html └── form.html └── websites ├── form.html ├── list.html └── website-preview.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: CoCreate-app 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | -------------------------------------------------------------------------------- /.github/workflows/automated.yml: -------------------------------------------------------------------------------- 1 | name: Automated Workflow 2 | on: 3 | push: 4 | branches: 5 | - master 6 | jobs: 7 | about: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Checkout 11 | uses: actions/checkout@v3 12 | - name: Setup Node.js 13 | uses: actions/setup-node@v3 14 | with: 15 | node-version: 16 16 | - name: Jaid/action-sync-node-meta 17 | uses: jaid/action-sync-node-meta@v1.4.0 18 | with: 19 | direction: overwrite-github 20 | githubToken: "${{ secrets.GITHUB }}" 21 | release: 22 | runs-on: ubuntu-latest 23 | steps: 24 | - name: Checkout 25 | uses: actions/checkout@v3 26 | - name: Setup Node.js 27 | uses: actions/setup-node@v3 28 | with: 29 | node-version: 14 30 | - name: Semantic Release 31 | uses: cycjimmy/semantic-release-action@v3 32 | id: semantic 33 | with: 34 | extra_plugins: | 35 | @semantic-release/changelog 36 | @semantic-release/git 37 | @semantic-release/github 38 | env: 39 | GITHUB_TOKEN: "${{ secrets.GITHUB }}" 40 | NPM_TOKEN: "${{ secrets.NPM_TOKEN }}" 41 | outputs: 42 | new_release_published: "${{ steps.semantic.outputs.new_release_published }}" 43 | new_release_version: "${{ steps.semantic.outputs.new_release_version }}" 44 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore 2 | node_modules 3 | dist 4 | package-lock.json 5 | yarn.lock 6 | pnpm-lock.yaml 7 | 8 | logs 9 | *.log 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | lerna-debug.log* 14 | .pnpm-debug.log* 15 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to CoCreateJS 2 | 3 | This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-admin/graphs/contributors). 4 | You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-admin/pulls), 5 | [propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-admin/issues). 6 | 7 | In the examples below, substitute your Github username for `contributor` in URLs. 8 | 9 | ## Fork the Project 10 | 11 | Fork the [project on Github](https://github.com/CoCreate-app/CoCreateJS) and check out your copy. 12 | 13 | ``` 14 | git clone https://github.com/contributor/CoCreateJS.git 15 | cd CoCreateJS 16 | git remote add upstream https://github.com/CoCreate-app/CoCreateJS.git 17 | ``` 18 | 19 | ## Create a Topic Branch 20 | 21 | Make sure your fork is up-to-date and create a topic branch for your feature or bug fix. 22 | 23 | ``` 24 | git checkout master 25 | git pull upstream master 26 | git checkout -b my-feature-branch 27 | ``` 28 | 29 | ## Write Tests 30 | 31 | Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build. 32 | Add to [spec](spec). 33 | 34 | We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix. 35 | 36 | ## Write Code 37 | 38 | Implement your feature or bug fix. 39 | 40 | ## Write Documentation 41 | 42 | Document any external behavior in the [README](README.md). 43 | 44 | ## Update Changelog 45 | 46 | Add a line to [CHANGELOG](CHANGELOG.md) under *Next Release*. 47 | Make it look like every other line, including your name and link to your Github account. 48 | 49 | ## Commit Changes 50 | 51 | Make sure git knows your name and email address: 52 | 53 | ``` 54 | git config --global user.name "Your Name" 55 | git config --global user.email "contributor@example.com" 56 | ``` 57 | 58 | Writing good commit logs is important. A commit log should describe what changed and why. 59 | 60 | ``` 61 | git add ... 62 | git commit 63 | ``` 64 | 65 | ## Push 66 | 67 | ``` 68 | git push origin my-feature-branch 69 | ``` 70 | 71 | ## Make a Pull Request 72 | 73 | Go to [https://github.com/CoCreate-app/CoCreate-admin](https://github.com/CoCreate-app/CoCreate-admin) and select your feature branch. 74 | Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days. 75 | 76 | ## Rebase 77 | 78 | If you've been working on a change for a while, rebase with upstream/master. 79 | 80 | ``` 81 | git fetch upstream 82 | git rebase upstream/master 83 | git push origin my-feature-branch -f 84 | ``` 85 | 86 | ## Update CHANGELOG Again 87 | 88 | Update the [CHANGELOG](CHANGELOG.md) with the pull request number. A typical entry looks as follows. 89 | 90 | ``` 91 | * [#123](https://github.com/CoCreate-app/CoCreate-admin/pull/123): Reticulated splines - [@contributor](https://github.com/contributor). 92 | ``` 93 | 94 | Amend your previous commit and force push the changes. 95 | 96 | ``` 97 | git commit --amend 98 | git push origin my-feature-branch -f 99 | ``` 100 | 101 | ## Check on Your Pull Request 102 | 103 | Go back to your pull request after a few minutes and see whether it passed muster with Travis-CI. Everything should look green, otherwise fix issues and amend your commit as described above. 104 | 105 | ## Be Patient 106 | 107 | It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang on there! 108 | 109 | ## Thank You 110 | 111 | Please do know that we really appreciate and value your time and work. We love you, really. -------------------------------------------------------------------------------- /CoCreate.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "organization_id": "", 3 | "key": "", 4 | "host": "", 5 | "directories": [ 6 | { 7 | "entry": "./src", 8 | "exclude": [ 9 | "demos" 10 | ], 11 | "array": "files", 12 | "object": { 13 | "name": "{{name}}", 14 | "path": "/admin/{{path}}", 15 | "pathname": "{{pathname}}", 16 | "directory": "admin", 17 | "content-type": "{{content-type}}", 18 | "src": "{{source}}", 19 | "host": [ 20 | "*" 21 | ], 22 | "public": "true" 23 | } 24 | } 25 | ] 26 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 CoCreate LLC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CoCreate-admin 2 | 3 | A No Code Admin, CRM, CMS, Website Builder platform. Powered by CoCreateJS to provide Realtime and Collaborative CRUD functionality. 4 | 5 | 6 |  7 |  8 | 9 |  10 | 11 | ## [Docs & Demo](https://cocreate.app/docs/admin) 12 | 13 | For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/admin) 14 | 15 | ## CDN 16 | 17 | ```html 18 | 19 | ``` 20 | 21 | ```html 22 | 23 | ``` 24 | 25 | ## NPM 26 | 27 | ```shell 28 | $ npm i @cocreate/admin 29 | ``` 30 | 31 | ## yarn 32 | 33 | ```shell 34 | $ yarn install @cocreate/admin 35 | ``` 36 | 37 | # Table of Contents 38 | 39 | - [Table of Contents](#table-of-contents) 40 | - [Announcements](#announcements) 41 | - [Roadmap](#roadmap) 42 | - [How to Contribute](#how-to-contribute) 43 | - [About](#about) 44 | - [License](#license) 45 | 46 | 47 | 48 | # Announcements 49 | 50 | All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-admin/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-admin/releases). You may also subscribe to email for releases and breaking changes. 51 | 52 | 53 | 54 | # Roadmap 55 | 56 | If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/CoCreate-app/CoCreate-admin/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-admin/pulls). We would love to hear your feedback. 57 | 58 | 59 | 60 | # About 61 | 62 | CoCreate-admin is guided and supported by the CoCreate Developer Experience Team. 63 | 64 | Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries. 65 | 66 | CoCreate-admin is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC. 67 | 68 | 69 | 70 | # How to Contribute 71 | 72 | We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-admin/blob/master/CONTRIBUTING.md) guide for details. 73 | 74 | We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/CoCreate-app/CoCreate-admin/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-admin/pulls) or merely upvote or comment on existing issues or pull requests. 75 | 76 | We appreciate your continued support, thank you! 77 | 78 | 79 | 80 | # License 81 | 82 | [The MIT License (MIT)](https://github.com/CoCreate-app/CoCreate-admin/blob/master/LICENSE) 83 | 84 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@cocreate/admin", 3 | "version": "1.36.1", 4 | "description": "A No Code Admin, CRM, CMS, Website Builder platform. Powered by CoCreateJS to provide Realtime and Collaborative CRUD functionality. ", 5 | "keywords": [ 6 | "admin", 7 | "crm", 8 | "cms", 9 | "cocreate", 10 | "low-code-framework", 11 | "no-code-framework", 12 | "cocreatejs", 13 | "cocreatejs-component", 14 | "cocreate-framework", 15 | "no-code", 16 | "low-code", 17 | "collaborative-framework", 18 | "realtime", 19 | "realtime-framework", 20 | "collaboration", 21 | "shared-editing", 22 | "html5-framework", 23 | "javascript-framework" 24 | ], 25 | "publishConfig": { 26 | "access": "restricted" 27 | }, 28 | "author": "CoCreate LLC", 29 | "license": "MIT", 30 | "repository": { 31 | "type": "git", 32 | "url": "git+https://github.com/CoCreate-app/CoCreate-admin.git" 33 | }, 34 | "bugs": { 35 | "url": "https://github.com/CoCreate-app/CoCreate-admin/issues" 36 | }, 37 | "homepage": "https://cocreate.app", 38 | "funding": { 39 | "type": "GitHub Sponsors ❤", 40 | "url": "https://github.com/sponsors/CoCreate-app" 41 | }, 42 | "main": "index.js", 43 | "scripts": { 44 | "postinstall": "node -e \"const { execSync } = require('child_process'); try { execSync('coc --version', { stdio: 'ignore' }); } catch (error) { try { execSync('npm install -g @cocreate/cli', { stdio: 'inherit' }); console.log('Installed \"@cocreate/cli\" globally.'); } catch (error) { console.error('Failed to install \"@cocreate/cli\" globally:', error); } }\"" 45 | }, 46 | "devDependencies": { 47 | "css-loader": "^5.1.3", 48 | "esbuild": "^0.25.2", 49 | "esbuild-loader": "^4.3.0", 50 | "html-webpack-plugin": "^5.3.1", 51 | "mini-css-extract-plugin": "^1.5.0", 52 | "webpack": "^5.24.4", 53 | "webpack-cli": "^4.5.0", 54 | "webpack-log": "^3.0.1" 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | tabWidth: 4, 3 | semi: true, 4 | trailingComma: "none", 5 | bracketSameLine: true, 6 | useTabs: true, 7 | overrides: [ 8 | { 9 | files: ["*.json", "*.yml", "*.yaml"], 10 | options: { 11 | tabWidth: 2, 12 | useTabs: false 13 | }, 14 | } 15 | ], 16 | }; -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dryRun: false, 3 | branches: ["master"], 4 | plugins: [ 5 | "@semantic-release/commit-analyzer", 6 | "@semantic-release/release-notes-generator", 7 | [ 8 | "@semantic-release/changelog", 9 | { 10 | changelogFile: "CHANGELOG.md", 11 | }, 12 | ], 13 | "@semantic-release/npm", 14 | "@semantic-release/github", 15 | [ 16 | "@semantic-release/git", 17 | { 18 | assets: ["CHANGELOG.md", "package.json"], 19 | }, 20 | ], 21 | ], 22 | }; -------------------------------------------------------------------------------- /src/403.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Sorry, you do not have permission to access this page.
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |The page you are looking for could not be found.
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/background.png -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icon.png -------------------------------------------------------------------------------- /src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/assets/icons/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-256x256.png -------------------------------------------------------------------------------- /src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /src/assets/icons/no-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/no-img.jpg -------------------------------------------------------------------------------- /src/assets/icons/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/icons/screenshot-1.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/svg/address-book.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/align-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/align-justify.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/align-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/align-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/balance-scale.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/blog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/boxes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/brain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/broadcast-tower.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/building.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/calendar-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/calendar-day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/calendar-week.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/camera.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/check-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/city.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/clipboard-list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/cloud-upload-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/cog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/cogs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/comments.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/compress.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/copy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/credit-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/cubes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/database.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/directions.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/assets/svg/envelope.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/expand.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/eye-slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/eye.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-csv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-download.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-excel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-export.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-image.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-import.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-invoice-dollar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-invoice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-pdf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/file-upload.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/font.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/funnel-dollar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/github.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/globe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/google-plus-g.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/graduation-cap.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/hat-wizard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/heading.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/history.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/home.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/images.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/instagram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/key.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/linkedin-in.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/mobile-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/money-bill-wave.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/paint-brush.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/palette.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/pencil-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/photo-video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/pinterest-p.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/plug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/plus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/print.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/project-diagram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/quote-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/quote-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/redo-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/reply.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/save.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/server.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/shapes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/share-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/shopping-cart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/sign-in-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/sign-out-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/sliders-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/star-half-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/store.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/stream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/strikethrough.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/tablet-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/tachometer-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/tags.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/tasks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/th-large.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/th.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/thumbs-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/thumbs-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/times.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/trash-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/underline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/undo-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/unlink.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/users.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/wallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/svg/youtube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blog/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 |