├── .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 | ![License](https://img.shields.io/github/license/CoCreate-app/CoCreate-admin?style=flat-square) 7 | ![Hiring](https://img.shields.io/static/v1?style=flat-square&label=&message=Hiring&color=blueviolet) 8 | 9 | ![CoCreate-admin](https://cdn.cocreate.app/docs/CoCreate-admin.gif) 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 | 403 - Forbidden 6 | 7 | 8 |

403 - Forbidden

9 |

Sorry, you do not have permission to access this page.

10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 404 - Not Found 6 | 7 | 8 |

404 - Not Found

9 |

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 | Blog Form | CoCreate 13 | 18 | 19 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 141 | 142 |
143 |
148 | 153 | 154 | 159 | 160 | 161 | 165 | 166 | 167 | 171 | 172 | 173 | 178 | 179 | 180 | 184 | 185 | 186 | 191 |
192 |
193 | 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /src/builder/components/filetree.html: -------------------------------------------------------------------------------- 1 | 2 |
12 |
16 | 17 |
18 | 24 | 25 | 26 | Folder name 33 | 41 |
42 |
43 |
51 |
55 | 56 | 57 |
58 | 59 | 64 |
65 |
66 | -------------------------------------------------------------------------------- /src/builder/components/settings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Builder Settings | CoCreate 8 | 13 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 137 | 138 |
139 |
143 | 144 | 145 | 153 | 154 | 162 | 163 | 164 |
    171 |
  • 172 |

    Unit Name

    173 |
  • 174 |
175 |
176 | 177 | 182 |
183 |
184 | 185 | 186 | 187 | 188 | -------------------------------------------------------------------------------- /src/builder/index.css: -------------------------------------------------------------------------------- 1 | *{padding:0px; margin:0px;} 2 | 3 | *, *:before, *:after { 4 | -webkit-box-sizing: border-box; 5 | -moz-box-sizing: border-box; 6 | box-sizing: border-box; 7 | } 8 | html { 9 | scroll-behavior: smooth; 10 | } 11 | 12 | body { 13 | background-color: #fff; 14 | font-family: 'Open Sans', sans-serif; 15 | font-size: 1rem; 16 | color: #505050; 17 | font-weight: 100; 18 | -webkit-font-smoothing: antialiased; 19 | -webkit-text-size-adjust: 100%; 20 | } 21 | 22 | a { 23 | text-decoration: none; 24 | cursor: pointer; 25 | align-items: center; 26 | color: inherit; 27 | } 28 | 29 | .left-panel.active, .right-panel.active, .blocks.active, .components.active, .editor-panel.active { 30 | display: block 31 | } 32 | 33 | input[type=number]::-webkit-inner-spin-button, 34 | input[type=number]::-webkit-outer-spin-button { 35 | opacity: 1; 36 | } 37 | 38 | .selected { 39 | margin: 0; 40 | padding: 0; 41 | height: 25px; 42 | min-height: 25px; 43 | } 44 | 45 | .builder-tab-round[selected] { 46 | background: darkgrey; 47 | } 48 | 49 | li[selected-group="screen-size"][selected] { 50 | background: gainsboro; 51 | } 52 | 53 | .card:hover { 54 | background: rgba(0, 0, 0, 0.2); 55 | } 56 | 57 | [image-type*="image"] { 58 | display: block!important; 59 | } 60 | 61 | [video-type*="video"] { 62 | display: block!important; 63 | } -------------------------------------------------------------------------------- /src/calendar/index.css: -------------------------------------------------------------------------------- 1 | #calendar-container { 2 | /*top: 0;*/ 3 | /*left: 0;*/ 4 | /*right: 0;*/ 5 | /*bottom: 0;*/ 6 | /*height:100%;*/ 7 | /*position: absolute;*/ 8 | } 9 | .fc-toolbar.fc-header-toolbar{ 10 | margin-bottom:10px!important; 11 | } 12 | .cal-container { 13 | height:100vh; 14 | } 15 | td.fc-event-container{ 16 | /*padding:0px!important;*/ 17 | } 18 | -------------------------------------------------------------------------------- /src/call-center/green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/call-center/green.gif -------------------------------------------------------------------------------- /src/call-center/orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/call-center/orange.gif -------------------------------------------------------------------------------- /src/code-editor/index.css: -------------------------------------------------------------------------------- 1 | .collapsed>.code-editor { 2 | height: 0px; 3 | overflow: hidden 4 | } 5 | 6 | .tab[selected] { 7 | background: whitesmoke; 8 | } 9 | 10 | textarea.active { 11 | display:block; 12 | height: 100vh; 13 | width: 100%; 14 | border:none; 15 | outline:none; 16 | padding:10px; 17 | } 18 | -------------------------------------------------------------------------------- /src/components/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | Components Form View | CoCreate 13 | 18 | 19 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 143 | 144 | 145 |
146 |
147 | 152 | 153 | 158 | 159 | 160 | 165 | 166 | 167 | 172 |
173 |
174 | 175 | 176 | 177 | 178 | -------------------------------------------------------------------------------- /src/dashboard/charts/charts.1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | chart | CoCreate 13 | 14 | 21 | 22 | 23 | 58 | 59 | 60 |
64 | 70 |
71 |
72 |
76 |
77 |
78 |
81 |
84 |
85 |
86 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 | 108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 | 124 | 125 | 126 | 127 | -------------------------------------------------------------------------------- /src/dashboard/circle-progressbar/circle.html: -------------------------------------------------------------------------------- 1 |
2 |

Visits

3 |

Total visits today

4 |
5 |

$4000

6 | 7 | 7% 8 |
9 | Detail 10 |
11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /src/dashboard/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 38 | 39 | 58 | 59 | 60 | Auto-placement in CSS Grid Layout - placement_6 - code sample 61 | 62 | 63 | 64 | 65 |
68 |
One
69 |
Two
70 |
Three
71 |
Four
72 |
Five
73 |
Six
74 |
Seven
75 |
Eight
76 |
Nine
77 |
Ten
78 |
Eleven
79 |
Twelve
80 |
81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /src/database/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | Contact Form View 13 | 18 | 19 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 143 | 144 |
145 |
146 | 147 | 153 | 154 | 155 | 160 |
161 |
162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /src/email/compose.html: -------------------------------------------------------------------------------- 1 | Compose -------------------------------------------------------------------------------- /src/email/settings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | Email Settings | CoCreate 13 | 18 | 19 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 143 | 144 | 145 |
146 |
147 | 148 | 149 | 154 | 155 | 156 | 161 | 162 | 167 |
168 |
169 | 170 | 171 | 172 | 173 | -------------------------------------------------------------------------------- /src/image-editor/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | tui-image-editor | CoCreateJS 13 | 14 | 17 | 18 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 127 | 128 |
129 |
130 |
131 | 132 | 133 | 134 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | *{padding:0px; margin:0px;} 2 | 3 | *, *:before, *:after { 4 | -webkit-box-sizing: border-box; 5 | -moz-box-sizing: border-box; 6 | box-sizing: border-box; 7 | } 8 | html { 9 | scroll-behavior: smooth; 10 | } 11 | 12 | body { 13 | background-color: #fff; 14 | font-family: 'Open Sans', sans-serif; 15 | font-size: 1rem; 16 | color: #505050; 17 | font-weight: 100; 18 | -webkit-font-smoothing: antialiased; 19 | -webkit-text-size-adjust: 100%; 20 | } 21 | 22 | a { 23 | text-decoration: none; 24 | cursor: pointer; 25 | align-items: center; 26 | color: inherit; 27 | } 28 | -------------------------------------------------------------------------------- /src/industries/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | Industries Form View | CoCreate 13 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 137 | 138 |
139 |
145 | 151 | 152 | 158 | 159 | 164 |
165 |
166 | 167 | 168 | 169 | 170 | -------------------------------------------------------------------------------- /src/keys/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Permissions Form | CoCreate 8 | 13 | 14 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 |
32 | 33 |
34 | 44 | 45 | Test Collection
46 | Create 47 |
48 | Read 49 |
50 | Update 51 |
52 | Delete 53 |
54 | 55 | 63 | 64 | 69 |
70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "CoCreate", 3 | "name": "CoCreate", 4 | "description": "Build your business in miutes", 5 | "protocol_handlers": [ 6 | { 7 | "protocol": "web+jngl", 8 | "url": "/lookup?type=%s" 9 | } 10 | ], 11 | "orientation": "portrait-primary", 12 | "icons": [ 13 | { 14 | "src": "./assets/icons/icon-72x72.png", 15 | "type": "image/png", 16 | "sizes": "72x72" 17 | }, 18 | { 19 | "src": "./assets/icons/icon-96x96.png", 20 | "type": "image/png", 21 | "sizes": "96x96" 22 | }, 23 | { 24 | "src": "./assets/icons/icon-128x128.png", 25 | "type": "image/png", 26 | "sizes": "128x128" 27 | }, 28 | { 29 | "src": "./assets/icons/icon-144x144.png", 30 | "type": "image/png", 31 | "sizes": "144x144" 32 | }, 33 | { 34 | "src": "./assets/icons/icon-152x152.png", 35 | "type": "image/png", 36 | "sizes": "152x152" 37 | }, 38 | { 39 | "src": "./assets/icons/icon-192x192.png", 40 | "type": "image/png", 41 | "sizes": "192x192" 42 | }, 43 | { 44 | "src": "./assets/icons/icon-384x384.png", 45 | "type": "image/png", 46 | "sizes": "384x384" 47 | }, 48 | { 49 | "src": "./assets/icons/icon-512x512.png", 50 | "type": "image/png", 51 | "sizes": "512x512", 52 | "purpose": "maskable" 53 | } 54 | ], 55 | "start_url": "/", 56 | "id": "/", 57 | "background_color": "whitesmoke", 58 | "display": "fullscreen", 59 | "theme_color": "#c7c7c7", 60 | "screenshots": [ 61 | { 62 | "src": "./assets/screenshot-1.png", 63 | "type": "image/png", 64 | "sizes": "1903x950" 65 | } 66 | ], 67 | "categories": "productivity", 68 | "file_handlers": [ 69 | { 70 | "action": "/open-file", 71 | "accept": { 72 | "text/*": [ 73 | ".txt" 74 | ] 75 | } 76 | } 77 | ], 78 | "share_target": { 79 | "action": "/", 80 | "method": "GET", 81 | "enctype": "application/x-www-form-urlencoded", 82 | "params": { 83 | "title": "title", 84 | "text": "text", 85 | "url": "url" 86 | } 87 | } 88 | } -------------------------------------------------------------------------------- /src/marketplace/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Marketplace Form | CoCreate 8 | 13 | 14 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 138 | 139 | 140 |
141 |
142 | 143 | 148 | 153 | 158 |
159 |
160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /src/module-templates/templates/blank.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | Blank View | CoCreate 13 | 18 | 19 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /src/payments/settings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | Payment Settings | CoCreate 13 | 14 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 138 | 139 | 140 |
141 |

Connect with cocreate stripe

142 | 145 | Connect 146 | 147 |
148 | 149 | 150 | 151 | 152 | -------------------------------------------------------------------------------- /src/university/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | University Form | CoCreate 13 | 18 | 19 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 141 | 142 |
143 |
148 | 153 | 154 | 159 | 160 | 161 | 165 | 166 | 167 | 171 | 172 | 173 | 178 | 179 | 180 | 184 | 185 | 186 | 191 |
192 |
193 | 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /src/websites/website-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-admin/97ee04475c652b175705d549b5040c7f85efa2df/src/websites/website-preview.png --------------------------------------------------------------------------------