My Path collection is designed with symbolic pieces to inspire, empower and guide you in your journey. These pieces will help bring you strength, peace, and clarity to find your path and walk it each day.
<script data-locksmith>
var load = function () {
if (document.querySelectorAll('.locksmith-manual-trigger').length > 0) {
Locksmith.ping();
}
Locksmith.util.on('submit', 'locksmith-resource-form', function (event) {
event.preventDefault();
var data = Locksmith.util.serializeForm(event.target);
Locksmith.postResource(data, { spinner: false, container: 'locksmith-content' });
});
Locksmith.util.on('click', 'locksmith-manual-trigger', function (event) {
event.preventDefault();
Locksmith.postResource({}, { spinner: true, container: document });
});
Locksmith.submitPasscode = function (passcode) {
Locksmith.postResource(
{ passcode: passcode },
{ spinner: false, container: 'locksmith-content' }
);
};
};
if (typeof Locksmith !== 'undefined') {
load();
} else {
window.addEventListener('load', load);
}
</script>