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 58 jobs >

Login To Your Profile (13)

Widget Title

View 57 jobs >

Login To Your Profile (14)

Widget Title

View 99 jobs >

Login To Your Profile (15)

Widget Title

View 15 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

Why is my Facebook not letting me log in to my account? ›

If you can't log into Facebook account, it might because of the following reasons: forgot the Facebook log in details, account hack, Facebook bugs, cache or cookie problems, browser issue, malware/virus infection, the account is disabled by Facebook, etc.

How to recover a Gmail account without enough information? ›

How to recover Gmail password without phone number or recovery email?
  1. Step 1: Visit the Google Account Recovery Page. ...
  2. Step 2: Type in your Gmail username or ID. ...
  3. Step 3: Choose “Try Another Way to Sign In” ...
  4. Step 4: Verification Using Another Device. ...
  5. Step 5: Waiting for the Password Reset Link. ...
  6. Step 6: Resetting Your Password.
Jan 18, 2024

How to resolve you can't recover your account at this time because Google doesn't have enough info to be sure this account is yours? ›

If Google can't verify your Gmail account ownership due to a forgotten password, try using Google Account Recovery, backup codes, signing in on another device, or contacting Google support directly. Providing additional account details may help prove ownership and regain access.

How to recover a Gmail account using another device? ›

To get started, head to g.co/recover and enter your Gmail address. If possible, try the following to make recovery easier: Use a computer, phone, or tablet you've previously used to sign into your account. Use the same browser that you usually do, like Chrome or Safari.

Why can't I get back into my Facebook account? ›

If you're having trouble logging into your account from the Find Your Account page, try these tips: Try entering each email or mobile phone number you've owned (one at a time). You may have added an old email or mobile number to your account and forgotten about it.

How do you know if your Facebook account has been hacked? ›

Your account may have been hacked if you notice your email or password has changed, your name or birthday has changed, friend requests have been sent to people you don't know, messages have been sent that you didn't write or posts have been made that you didn't create.

How can I recover my Facebook password without email and phone number? ›

2. Contacting Facebook Support
  1. Visit the Facebook Help Center.
  2. Go to “Login and Password” on the left side menu.
  3. Click on “Fix a Login Problem”.
  4. On the page, click on “Recover Your Account If You Can't Access the Email or Mobile Number on the Account”.
  5. Follow the prompts based on your individual circ*mstance.
Aug 19, 2023

Why is my password not working even though it's correct? ›

Passwords are case-sensitive (it matters whether they have capital or lower-case letters), so check that you didn't get the case of one of the letters wrong. The password you enter can also be represented in a different way — as a string of characters in hexadecimal (numbers 0-9 and letters a-f) called a pass key.

How long does Google lock you out for too many attempts? ›

How Long Does a Gmail Lockout Last? According to Google, a Gmail lockout can last for a few hours to a few days. This time depends on the nature of the intrusion Google suspects. You can recover an account set up with the proper recovery information in a few minutes with the steps below.

Why does Google say I didn't provide enough information? ›

Why you were blocked from signing in. You may be blocked from signing in to your Google Account if: The service you're signing in from doesn't provide enough information to prove it's you. You're signing in from a new location or device.

What to do if Google disables your account? ›

If your account is disabled, you can ask Google to restore your access. To get started, head to myaccount.google.com and enter your Gmail address. Tip: If you can't get in to your account, you may be able to download and save account data from some Google Services.

Can I call Gmail support to recover my account? ›

For your security, you can't call Google for help to sign into your account. We don't work with any service that claims to provide account or password support. Do not give out your passwords or verification codes.

Does Google have 24-7 customer service? ›

The support service of your Google Cloud organization, such as Enhanced Support or Premium Support. Your service determines whether case support is available 24 hours a day, 7 days a week (24/7). Otherwise, Customer Care is available during Hours of Operation or Business Days.

How to unlock a Gmail account? ›

I Don't Know My Password
  1. Open the Internet browser then navigate to the Gmail website.
  2. Enter the Google username or Gmail address then click. Next. .
  3. Click. Forgot password? .
  4. Answer the applicable questions to confirm it's your account then click. Next. .
  5. When prompted, reset your password.

Is there an issue with Facebook right now? ›

User reports indicate no current problems at Facebook

Facebook is a social network where member share messages and status updates with online friends. The network also offers a platform for third party developers.

Why is my Facebook not working on my phone? ›

Use a browser

Another issue with your Facebook could be the app; try using a browser to check the issue. Trying using your phone's browser or a different one downloaded from your app's store to log in. If you're still experiencing an issue after trying these suggestions, it could be a bug or a broken feature.

How do I contact Facebook support to recover my account? ›

To recover your Facebook account, visit the official Facebook Help Center 1 (833) 203 5957 oR 650 543 4800 at https://www.facebook.com/help/. Navigate to the "Login and Password" or "Hacked and Fake Accounts" section.

Top Articles
Latest Posts
Article information

Author: Manual Maggio

Last Updated:

Views: 6319

Rating: 4.9 / 5 (49 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Manual Maggio

Birthday: 1998-01-20

Address: 359 Kelvin Stream, Lake Eldonview, MT 33517-1242

Phone: +577037762465

Job: Product Hospitality Supervisor

Hobby: Gardening, Web surfing, Video gaming, Amateur radio, Flag Football, Reading, Table tennis

Introduction: My name is Manual Maggio, I am a thankful, tender, adventurous, delightful, fantastic, proud, graceful person who loves writing and wants to share my knowledge and understanding with you.