Login To Your Profile (2024)

Skip to content

Current Employees

Current Employee

JOBS FOR CURRENT EMPLOYEES

By clicking on the Current Employee Job Search button, you are confirming that you are a current employee of Reyes Family of Businesses. Only applications from current Reyes Family of Business employees will be accepted via this link.

I am a Current Employee

If you are not a current employee, view and apply for jobs as an external applicant.

Search Jobs

  • English
    • Canadian French
  • English
    • Canadian French

Current Employees

Current Employee

JOBS FOR CURRENT EMPLOYEES

By clicking on the Current Employee Job Search button, you are confirming that you are a current employee of Reyes Family of Businesses. Only applications from current Reyes Family of Business employees will be accepted via this link.

I am a Current Employee

If you are not a current employee, view and apply for jobs as an external applicant.

Search Jobs

Job Search

Menu

Login To Your Profile2023-09-07T04:54:45+00:00

Login To Your Profile (11)

Widget Title

View 7 jobs >

Login To Your Profile (12)

Widget Title

View 35 jobs >

Login To Your Profile (13)

Widget Title

View 45 jobs >

Login To Your Profile (14)

Widget Title

View 75 jobs >

Login To Your Profile (15)

Widget Title

View 11 jobs >

SITEMAP

  • AREAS OF TALENT
  • LOCATIONS
  • WHAT SETS US APART
  • EVENTS

OUR BUSINESSES

  • REYES HOLDINGS
  • REYES BEVERAGE GROUP
  • MARTIN BROWER
  • REYES COCA-COLA BOTTLING
  • REYES FLEET MANAGEMENT

SOCIAL

EMPLOYEES

  • EMPLOYEE JOB SEARCH

©2021 REYES HOLDINGS

' return output; } this.removeMarker = function() { jQuery('[data-marker-name="'+this.name+'"]').remove(); delete this.map.mapMarkers[this.name]; this.map.openedModals.removeElement(this.modal); } this.show = function() { this.markerContainer.append(this.generateMarker()); } } // MapMarker class end function MarkerModal(modalTitle, content, linkedMapMarker) { this.title = modalTitle; this.linkedMapMarker = linkedMapMarker; // linked to modal map marker object this.content = content; this.positionedElemOffsetX = null; this.positionedElemOffsetY = null; self = this; this.generateModal = function() { output = '

' + this.title + '

'; output += '

' + this.content + '

'; output += '

'; return output; } //Added by Somesh for Location data in bottom this.locData = function() { output = loc_details = "

"+ this.title +"

"+ this.content +"

"; return output; } this.isModalActive = function() { return (jQuery('[data-marker-name="' + this.linkedMapMarker.name + '"]').hasClass('active')); } this.closeModal = function() { jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"] .hmap_marker_content').remove(); //Added by Somesh to remove existing location after click on another location jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').parent().parent().find('.location_details').remove(); this.linkedMapMarker.map.openedModals.removeElement(this); this.linkedMapMarker.deactivate(); this.linkedMapMarker.unsetCurrent(); if (this.linkedMapMarker.map.openedModals.length < 1) { this.linkedMapMarker.map.maxZindex = 2; }; } this.openModal = function() { this.linkedMapMarker.activate(); this.linkedMapMarker.setCurrent(); // generate modal and insert it into block with clicked map marker; jQuery('[data-marker-name="' + this.linkedMapMarker.name + '"]').append(this.generateModal()); //Added by Somesh for appending Location data in bottom jQuery('.location_data').append(this.locData()); // add currently opened modal to array with all opened modals; this.linkedMapMarker.map.openedModals.push(this); // center opened modal on map marker (css); this.clearPosition(); } this.toggleModal = function() { this.openModal(); // if ( ! this.isModalActive() ) { // this.openModal(); // } // else { // this.closeModal(); // } } this.clearPosition = function() { $markerContentWidth = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content').outerWidth(); $markerContentHeight = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content').outerHeight(); // if modal content block width is grater than window width set modal with to window width if ($markerContentWidth > jQuery(window).outerWidth()) { $markerContentWidth = jQuery(window).outerWidth()-1; } $markerWidth = jQuery('.hmap_marker').outerWidth(); $markerHeight = jQuery('.hmap_marker').outerHeight(); $positionedElem = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content'); self.positionedElemOffsetX = -($markerContentWidth/2)+$markerWidth/2; self.positionedElemOffsetY = $markerHeight/2; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth() }); // if modal is off screen changes its left/right position until modal is fully on screen whileOffScreen(); } function whileOffScreen() { // while is overflowing screen on the left while (($positionedElem.offset().left < 0)&(!($positionedElem.offset().left + $markerContentWidth > jQuery(window).outerWidth()))) { self.positionedElemOffsetX += 1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } // while is overflowing screen on the rifht while (($positionedElem.offset().left + $markerContentWidth > jQuery(window).outerWidth())&(!($positionedElem.offset().left < 0))) { self.positionedElemOffsetX += -1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } // while is overflowing srceen on top while($positionedElem.offset().top<0) { self.positionedElemOffsetY += -1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } } } // MarkerModal class end // Required functionality methods and functions Array.prototype.removeElement = function(elem) { var index = this.indexOf(elem); if (index > -1) { this.splice(index, 1); } } function generateName(namebase) { return namebase+Math.floor((Math.random() * 1000) + 1); } function generateUniqueMarkerName(map, name) { var namebase = 'mapMarker'; var objname; // check if param name is specified, if so use its name and check for duplicates if(typeof name !== 'undefined') { objname = name; } else { objname = generateName(namebase); } var infiniteLoopCheck = 0; while (map.mapMarkers[objname]) { objname = generateName(namebase); infiniteLoopCheck++; if (infiniteLoopCheck > 1000) { console.error('After 10000 tries couldnt generate unique name for MapMarker object. Change max number in MapMarker object name [function generateName()]. Default max: 1000'); return false; }; } return objname; } function getKBmap(name) { for (var i=0, iLen=addedKBmaps.length; i

before last

by somesh to add Location data div in bottom var output = '

Login To Your Profile (16)

'; jQuery('#'+name).append(output); window[name] = new Map(name, mapDataJSON); addedKBmaps.push(window[name]); }}

Page load link
Login To Your Profile (2024)

FAQs

Where is my profile page on Google? ›

To find your Google profile, go to profile.google.com.

What is profile login? ›

A login profile is a collection of attributes to be applied to a set of login accounts. The attributes define login characteristics, such as default roles or the login script associated with each login bound to the profile.

Where is my profile on my phone? ›

On your Android phone or tablet, go to your Google Account. At the top, tap Personal info. Scroll to “Your profiles." Then, tap See profiles. Select a service to view your profile info.

How do I find my Google Account name and password? ›

If you've forgotten your Google Account password, you can try to recover it through the Google website. On your phone or computer web browser, go to www.google.com/accounts/recovery. Follow the instructions on the screen to reset your password.

Where is the profile tab on Google? ›

Add a new profile
  • On your computer, open Chrome.
  • At the top right, click Profile .
  • Click Add.
  • If you choose to Sync to your Google Account, your profile name will automatically be your Account name.
  • Choose a name, photo and color scheme.

How do I find a link to my Google profile? ›

In order to get your profile URL, navigate to your profile page (see instructions above). Copy and share the resulting URL from the address bar of your browser. Make sure your URL looks similar to the example in the image below. Note that the numbers at the end of the URL will be different for each user.

Where is your user profile? ›

In C:\Users there is a Default User profile and an All Users profile. The Default User profile is used as the starting point for each new user.

What is login and profile password? ›

With login password you can access internet banking facility, whereas the profile password is used to make changes or access details of the net-banking profile.

What is profile logging? ›

A logging profile records requests to the virtual server. A logging profile determines where events are logged, and which items (such as which parts of requests, or which type of errors) are logged.

What is your profile icon? ›

Definition: A profile picture is the image that represents a social media account in all its interactions across a platform. Profile pictures are displayed as an avatar next to the account name on posts, comments and mentions (depending on the platform).

How do I check the profile of my Gmail account? ›

On your Android phone or tablet, open the Gmail app . Open an email with the person whose details you want to know. At the top left of the email, tap the profile picture.

What is the username and password for login? ›

Username and password authentication is a method of verifying the identity of a user accessing a digital system. The user provides a unique identifier, called a username, and a secret, called a password, to gain access. The system then compares this information with its stored database to verify the user's identity.

Is my Google Account and password the same? ›

Yes, your Google password is the same as your Gmail password. When you first create a Google account, it includes access to various Google services, including Gmail (as well as Google Drive, Google Photos, and more). All of these services use the same account credentials as your Google account.

Can I see my Google password on my phone? ›

  1. On your Android device, open Chrome .
  2. At the top right, tap More .
  3. Tap Settings. Password Manager.
  4. Show, edit, delete, or export a password:. Show: Tap the password that you want to show Show password . Edit: Tap the password that you want to change and tap Edit. Edit your password, then tap Done.

Why is my profile not showing up on Google? ›

If a profile hasn't been added or verified, it won't appear on Google. Verification is a requirement to be seen on Google Maps and a prerequisite for Search.

Where is my profile icon on Google Chrome? ›

In Chrome, click the profile icon in the top right corner. 2. To edit the profile you're currently using, click More (under the three dot icon) and then Settings.

Where can I find my profile picture on Google? ›

On your mobile device, open the Gmail app . Personal info. Under “Basic info,” next to “Photo,” select your Profile picture. Your profile picture displays.

Where is Google user profile? ›

Information for each user's roaming profile is kept in a file named profile. pb. By default, this file is located in %APPDATA%/Google/Chrome.

Top Articles
Latest Posts
Article information

Author: Edmund Hettinger DC

Last Updated:

Views: 6540

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Edmund Hettinger DC

Birthday: 1994-08-17

Address: 2033 Gerhold Pine, Port Jocelyn, VA 12101-5654

Phone: +8524399971620

Job: Central Manufacturing Supervisor

Hobby: Jogging, Metalworking, Tai chi, Shopping, Puzzles, Rock climbing, Crocheting

Introduction: My name is Edmund Hettinger DC, I am a adventurous, colorful, gifted, determined, precious, open, colorful person who loves writing and wants to share my knowledge and understanding with you.