modify and brand the entire account creation process for http://www.DigitalSignage.com enterprise / reseller accounts
Enterprise / Resellers can have full control on how new users open and manage accounts on their own web site. The "GetStarted" wizard allows any JavaScript developer to change Studio, Template and Player selections during account creation as well as completely modify the open account process. The wizard consists of:
- Studio Selection (Lite / Pro)
- Player Installer (HTML5, executables, direct download, AIR and Flash)
- Create account process (branded to your enterprise account)
- Change user password
- Change business name
- Forgot password
- User authentication
- Bootstrap Progressive layout
- Developed with Backbone.js
- Be sure to watch this video tutorial which will walk you through on how to host the entire "Get Started" app on your own web server: http://www.digitalsignage.com/_html/video_tutorials.html?videoNumber=msgetstarted
- download and install nodejs: https://nodejs.org
- download and install git: https://git-scm.com/downloads
- run from the command line:
git clone https://github.com/born2net/msgetstarted.git
- change directory
cd msgetstarted
- install packages:
npm install
which will post execute for younode ./start.js
- follow the wizard's questions
- once you are ready for production execute:
npm run prod
- upload the final
_dist
directory to your own web server
The entire enterprise configuration is generated and saved inside of:
App.js
You can use any editor to change branding info manually:
BB.globs['COMPANY'] = 'YOUR_COMPANY_NAME';
BB.CONSTS.REDIRECT = 'YOUR_DOMAIN';
BB.CONSTS.RESELLER = 'YOUR_RESELLER_ID_HERE';
BB.globs['ERI'] = 'YOUR_ERI';
BB.globs['CLOUD'] = true; // false if hosting in private server or hybrid server
BB.globs['CHAT'] = 'URL_FOR_CHAT_SUPPORT';
note that all of the above data will automatically populate for you once you run the wizard and provide your credentials.
Visit landing page: http://dev.digitalsignage.com
- modified GPL V3