We have the right talent, right size, and right attitude to help business problems.
enterprises solve their most complex Our Leadership TeamInsights
At candent, we believe there is a way where customers are earned rather than bought. We're obsessively passionate about it, and our mission is to help you achieve it.
200+ years of cumulative experience across Industry verticals.
Constant innovation is a loud and clear mantra for everyone.
Right People and Right Culture begets the best performance.
Integrity, Commitment and Excellence.
Speed and Agility for complex business needs to make them future ready – now
Lines Of Code
Cups of Coffee
Download
Core Values : To be a trusted IT Consulting and Product Development Company…
Candent thrive for perfection. We believe in life work balance and respect individual’s opinions when working as a team to deliver best solutions to our customers. We deny traditional approach to each problem and like to innovate the solutions - beyond opportunities
Development Strategy : Project Delivery Methodologies
Data Security : Due to COVID epidemic, Work remotely is a new norm, Candent assures all their customers with extra level of security to their data with company provided laptop bitlocker, antivirus softwares and accessing SAP through VPN. Adherence to Clients quality as well as security policies is a prime focus at Candent.
We have the right talent, right size, and right attitude to help business problems.
enterprises solve their most complex Our Leadership TeamWe have more than 25 customers and the count is increasing.
We have nearly 60 associates with 2 offices in USA and in India. We are soon launching in Europe.
Over 40 years providing insights and expert guidance to clients enterprises worldwide.
We have the right talent, right size, and right attitude to help business problems.
enterprises solve their most complex Purpose & BeliefsMilind has rich experience of more than 20 years in IT industry. He has worked in large IT companies in various functions. He is regarded as one of the best professional in delivering projects with service improvements, transformation and automation initiatives, resulting in cost benefit to customer.
Technology alone is not enough to succeed; every service/product needs a team of passionate people who will give it their best. At work, we are technology experts and thought leaders that bring energy, passion, and knowledge to every project. Off the clock, we all love movies, travel, and sports.
To help enterprises on their digital transformation journey by simulating and encouraging innovation, trust in a cost-efficient way.
To become the software product development partner of choice all over the globe.
Who we are : Candent Technologies is a Technical Consulting and Service company offering industry leading SAP and Non SAP solutions to any sector We come up with the most flexible and scalable.
Become a trusted name in IT consulting and Product development company worldwide, build a creative and diverse global team while leading the way with business values of transparency and integrity.
Have a positive impact on Enterprises with effective IT.
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
Our award-winning team follow industry best practices to develop software.
Our unique tools design grahphics & HTML5 templates 4X faster than our rivals.
Having the shortest possible delay between idea and launch is crucial in business possible delay between ideapossible delay between idea
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
This free consultation allows us the opportunity to get to know you, what you are passionate about, and what direction you want to take your business.
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
We are a passionate digital design agency that specializes in beautiful and easy-to-use digital design & web development services.
3/205, Ved Vihar 3S, Kothrud, Pune 411029
Our team are eagerly waiting to help you growing your business. Please feel free to contact with us.
Gustave Eiffel's iconic, wrought-iron 1889 tower,
with steps and elevators to observation decks.
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
Looking to start your project quickly? Just unzip the candent-v1.0.0-.zip
. We have precompiled and packaged everything in the public
directory for you. Start editing the pages/nav-four-item-two-column.html
with a text or code editor, save it, and open the file in your favourite browser to see the changes.
Unzip the candent-v1.0.0-.zip
to any folder and open a command line or terminal at that location. candent-v1.0.0's dev tools requireNode andGit . If you do not have them in your machine, please install their latest stable version from their corresponding website. As you have Node and Git installed and accessible from your terminal or command line, install Gulp CLI package globally with the following command:
npm i gulp-cli -g
When you’re done, install the rest of the candent-v1.0.0's dependencies with:
npm i
Now run:
gulp
Running gulp will compile the SCSS, transpile the javascript, copy all required libraries form node_modules
to the corresponding public/assets/vendors
directory and will open a browser window to public/index.html
All of the following folders are monitored for changes, which will tell the browser to reload automatically after any changes are made:
public/assets/video/
public/assets/img/
public/vendors
src/pug/
src/scss/
src/js
Now you can edit any pug file from src/pug
, change SCSS variable with scss/_user-variables.scss
, or write your own SCSS code in scss/_user.scss
and add or update javascript
from src/js
directory
gulp
command will discard and regenerate all the files in following directories:public/**/*.html public/assets/css/ public/assets/js/ public/vendors
Hit Ctrl+C
or just close the command line window to stop the server.
Happy editing!
Within your candent-v1.0.0 you’ll find the following directories and files, grouping common resources and providing both compiled, transpiled and minified distribution files, as well as raw source files.
candent-v1.0.0-/ package.json vendors.json
gulp
The gulp
command will build, serve and watch the project with the following gulp tasks:
Task | Action |
---|---|
clean |
Delete the following directories:
|
style |
Compiles scss/theme.scss and generates theme.css, theme.min.css, theme-rlt.css, theme-rtl.min.css and theme.css.map, theme.min.css.map, theme-rlt.css.map, theme-rtl.min.css.map to the public/assets/css/ directory. |
script |
Concat the js files from src/js/ and transpiles with babel to theme.js , theme.min.js to the public/assets/js/ directory. |
compile:all |
Compiles all the js, scss, pug files from the src directory. |
vendor |
Runs vendor:clean and vendor:move in series. |
vendor:clean |
Delete the vendors from public/vendors directory which are included in vendors.json . |
vendor:move |
Copies the vendors from node_modules/ directory to public/vendors directory according to the vendors.json . |
watch |
All of the following folders are monitored for changes, which will tell the browser to reload automatically after any changes are made:
|
build |
Will delete previous build directory and generate a new compressed version to deploy
|
build:test |
Will run the build version in port:3000 |
Your theme comes with a built-in automated rtl feature. Here is the example. To use rtl, set the dir='rtl'
in your html like:
<html dir='rtl'>...</html>
And use the rtl stylesheet instead of theme.css
<link href="assets/css/theme-rtl.css" rel="stylesheet" />
To add/replace a new page in candent-v1.0.0
you should set a unique id to .page
element and also assign it to pages
attribute of .sidebar-item-wrapper
for navigating this page from sidebar nav. For example, if we want to add feature page in nav-four-item-two-column.html
the following code need to set inside #gridNav
Place your new plugin in public/vendors
folder. Eg: to add the typed.js
plugin, we will download it from here, unzip it and place the typed
folder in public/vendors
folder. You can now simply link the plugin files to your HTML and use them.
Suppose we are installing the typed.js
plugin. Here are the steps:
Step 1:
run npm command for install plugin. for typed.js
we can run
npm i typed.js
Step 2:
Go to vendors.json
file and give the path directory from node_modules as follow
"typed.js": {
"src": ["lib/typed.js"],
"dest": "typed.js"
}
Here, dest
refers to public/vendors/
, where gulp will copy files from the typed.js
plugin. We actually use the vendors
folder to store neccassary plugins. And all the plugins folder name will be as we give the dest value
Step 3:
Run the following command:
gulp vendor:move
Using Smtpjs
you will be able to directly send email using client-side javascript without any server-level configurations.
You can also specify where to send the data via an hidden input:
How to configure and use Gmail SMTP to send emails from Javascript?
In case you are planning to use Gmail's SMTP to send mails, then make sure you have properly configured the below settings:
Allowed access in Gmail for less secure apps:
To use Gmail SMTP you'll need to allow access for less secure apps from google account settings. Turning the below settings off will allow your Javascript to connect to Gmail.
Disabled 2-step factor authentication
As you're going to connect to Gmail remotely using a program, so 2-step factor authentication should be disabled. Click here to learn more on how to disable 2FA
Once, the above settings are done, your Google SMTP server configurations would look something like this
MTP Server/Hostname: smtp.gmail.com
MTP Username: [Your Gmail Address]
SMTP password: [Your Gmail Password]
SMTP Port: 587
TLS/SSL: Required
If you are using gulp based workflow, Open form-processor.js and update your smtp credential
window.Email.send({
Host: "smtp.mailtrap.io",
Username: "Your User Name ",
Password: "Your Password",
To: formData.email,
From: "you@isp.com",
Subject: "This is the subject",
Body: `And this is the body`
})
If you are not using gulp based workflow, Open src\js\form-processor.js
find formInit method then update your smtp credential
See the sample code under the form bellow for better understanding.
<form data-form="data-form" onsubmit="return false"><label class="form-label text-700 mt-4 mb-3" for="inputName1"><i class="fas fa-user me-2"></i>NAME</label><input class="form-control form-boots-control mt-0" id="inputName1" type="text" name="name" /><label class="form-label text-700 mt-4 mb-3" for="inputEmail"> <i class="fas fa-envelope me-2"></i>YOUR EMAIL</label><input class="form-control form-boots-control mt-0" id="inputEmail" type="email" name="email" /><label class="form-label text-700 mt-4 mb-3" for="validationTextarea"> <i class="fas fa-pen me-2"></i>MESSAGE</label><textarea class="form-control is-invalid border-400 form-boots-control mt-0" id="validationTextarea1" placeholder="Message" rows="6" cols="50" required="required" name="message"> </textarea><button class="btn btn-boots-warning w-100 mt-5" type="submit">Send</button>
<div class="feedback"> </div>
</form>
A JavaScript utility for adding deep anchor links to existing page content. AnchorJS is lightweight, accessible, and has no dependencies.
Full Documentation
BigPicture is a pure javascript lightbox. It can display images, iframes, inline content and videos with optional autoplay for YouTube, Vimeo and even self hosted videos.
Implementation in theme - Full Documentation
CountUp.js is a dependency-free, lightweight JavaScript class that can be used to quickly create animations that display numerical data in a more interesting way.
Implementation in theme - Full Documentation
Get vector icons and social logos on your website with Font Awesome, the web's most popular icon set and toolkit.
Full Documentation
Detect when images have been loaded.
Full Documentation
Micro check plugin. Check types, regexps, presence, time and more...
Full Documentation
Filter & sort magical layouts.
Implementation in theme - Full Documentation
A modern JavaScript utility library delivering modularity, performance, & extras.
Full Documentation
Rellax is a buttery smooth, super lightweight (1021bytes gzipped), vanilla javascript parallax library.
Full Documentation
Swiper is the most modern free mobile touch slider with hardware accelerated transitions and amazing native behavior. It is intended to be used in mobile websites, mobile web apps, and mobile native/hybrid apps.
Implementation in theme - Full Documentation
28 October, 2021
Gustave Eiffel's iconic, wrought-iron 1889 tower,
with steps and elevators to observation decks.
<div class="googlemap min-vh-50" data-gmap="data-gmap" data-latlng="48.8583701,2.2922873,17" data-scrollwheel="false" data-icon="assets/img/map-marker.png" data-zoom="17" data-theme="Default">
<div class="marker-content">
<h5>Eiffel Tower</h5>
<p class="mb-0">Gustave Eiffel's iconic, wrought-iron 1889 tower,<br /> with steps and elevators to observation decks.</p>
</div>
</div>
<script src="https:maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" async="async"></script>
Get your API key⟶
Change the value of data-theme=''
to any of the followings
Default
Gray
Midnight
Hopper
Beard
AssassianCreed
SubtleGray
Tripitty
With AssassianCreed
scheme
Gustave Eiffel's iconic, wrought-iron 1889 tower,
with steps and elevators to observation decks.
<div class="googlemap min-vh-50 mt-3" data-gmap="data-gmap" data-latlng="48.8583701,2.2922873,17" data-scrollwheel="false" data-icon="assets/img/map-marker.png" data-zoom="17" data-theme="AssassianCreed">
<div class="marker-content">
<h5>Eiffel Tower</h5>
<p class="mb-0">Gustave Eiffel's iconic, wrought-iron 1889 tower,<br /> with steps and elevators to observation decks.</p>
</div>
</div>
<div class="googlemap min-vh-50" data-gmap="data-gmap" data-latlng="48.8588723,2.2932638" data-pov='{"heading":120,"pitch":0}' data-scrollwheel="false" data-icon="assets/img/map-marker.png" data-zoom="1" data-theme="streetview"> </div>
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.
But I must explain to you how all this mistaken idea of reprobating pleasure and extolling pain arose. To do so, I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.
But I must explain to you how all this mistaken idea of reprobating pleasure and extolling pain arose. To do so, I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.
But I must explain to you how all this mistaken idea of reprobating pleasure and extolling pain arose. To do so, I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.
But I must explain to you how all this mistaken idea of reprobating pleasure and extolling pain arose. To do so, I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.
But I must explain to you how all this mistaken idea of reprobating pleasure and extolling pain arose. To do so, I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.
But I must explain to you how all this mistaken idea of reprobating pleasure and extolling pain arose. To do so, I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.
But I must explain to you how all this mistaken idea of reprobating pleasure and extolling pain arose. To do so, I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
It is a sample page of candent where you can place any text, image, components or any other content.
Start your new project with candent right now!
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
Core Values : To be a trusted IT Consulting and Product Development Company…
Candent thrive for perfection. We believe in life work balance and respect individual’s opinions when working as a team to deliver best solutions to our customers. We deny traditional approach to each problem and like to innovate the solutions - beyond opportunities
Development Strategy : Project Delivery Methodologies
Data Security : Due to COVID epidemic, Work remotely is a new norm, Candent assures all their customers with extra level of security to their data with company provided laptop bitlocker, antivirus softwares and accessing SAP through VPN. Adherence to Clients quality as well as security policies is a prime focus at Candent.
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
Who we are : Candent Technologies is a Technical Consulting and Service company offering industry leading SAP and Non SAP solutions to any sector We come up with the most flexible and scalable.
Become a trusted name in IT consulting and Product development company worldwide, build a creative and diverse global team while leading the way with business values of transparency and integrity.
Have a positive impact on Enterprises with effective IT.
In today’s technology era, business systems are located at different datacenters and clouds, in such scenarios, seamless integration of these systems and data flow within them with security becomes crucial. Candent’s Integration experts help customer to build strategy and roadmap to achieve seamless integration in hybrid landscapes.
Let it be UI/UX, SAP, Integrations or Infrastructure, Candent believe that Clean & Modern design makes the IT landscapes more adoptive by business and helps to increase employee efficiency and eventually business growth.
Our flexible support models help our customers to select most suitable and unique Support model to them.
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
Candent offers span the width and depth of the technology space to meet constantly changing businesses. Candent delivers value across the Industry Verticals through unique model of building capabilities in latest and niche technologies.
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
If you really want to generate more business with a quality data analysis. This may be the first line of communication between you and potential guests or visitors. In today's business environment and to beat the competition large or small companies definitely need to develop a data model which will help them to take critical decisions.
Whether it’s an online store, a marketing site, a landing page, or anything in between - Candent’s expert business analysts and data engineers can identify exactly how to tailor your data model to meet your short- and long-term business goals.
We are Technology Experts who understands the DNA of effective IT Consulting to achieve business desired Digital Transformation.
Candent Consulting team carves out and supports the entire Digital Transformation journey for you.
Solution Consulting - Solution developed for any Industry and in any technology, Candent always comes up with innovative approach to it make the solution more adoptive, productive and user friendly.
Technology Consulting - We at Candent having technology at heart leads the transformative initiatives using the latest technologies like Artificial Intelligence, Machine Learning, Blockchain, IoT and Cloud technologies.
Our team will work with you to modernize your IT landscape, adopt disruptive technologies for cost and time savings, and adapt fast to evolving business scenarios.
We build custom business software which help automate existing complex and cluttered processes into well defined and simple operation. We have expertise in :
All rights Reserved © Candent, 2022
Made with by Aryan Technologies
All rights Reserved © Candent, 2022
Designed & Developed by Aryan Technologies