insiderreservations.mgmresorts.com Open in urlscan Pro
69.162.9.224  Public Scan

URL: https://insiderreservations.mgmresorts.com/
Submission: On August 03 via manual from US — Scanned from DE

Form analysis 1 forms found in the DOM

POST ./

<form method="post" action="./" id="form1">
  <div class="aspNetHidden">
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
      value="zh7s8GmJz8kNBoBhemV7hI4Ue4kCoyi0+HDSvrmGfVV4zHtf+6ztIK0wKT6qhz7qicTRvjslx1StDSAWoUj8R32FQ1sAhmt0zjcLSNcgNVjQ6cZJmVyFqeTK9dad6entkcA58IC78xWvPKs0NcWPzfI8fk/nN/MfRRYYzNAWwTGMI+/FSj33ZjQ9ged6n0FKiwbUkDIcSV7EbT7dBKOolzW18ibwsrdhaN+deCPWEwAzO6vzDoLVJ/yJojfKDud0uhmclh4djjmT9EzhBZznGoGQN2c/Eefqal0Le0cAycfGaNeZaWIe2Br37nAdfh244Q6HznSrVWCjNVGSxzi/DbqDeSl74AP3DjvvA9LC0NYhV4lgMwS6dRXAo/AyblXs6+GC65+We0l4/e3Qv0LqDLQEWPA0Ng8sEQbgQwROqaaECDRqjpi8bf5do2zDQkdKxg3ciMzN/ijSbEN6VgtGPY57BEK61cZfW01lXgWGSpsf62HHkaX2p8KHWG8b+0aThsLoxbTr3ZKV1Qb/PAe72SbAHviEKk5jQ8ao/WluTl8+5cSF2o2HCGdRo7NJxtEg7TNs299tljL0di2kPxPqfQZ3fmh0/irZgbRAb5d3Wf+KK2j0JZl8TWxkOEwIV9QHY6vH5zPaMh2ZWjwsGPwq8vOMMlultHHzkDwdXpm4W3tMtt4XUvKSWLIBavUgn5efadtB8EFcv1GDlw7CljXgFzBR97/YghjU2zwJnU0T3CWeKVvjQnpguF+Dgd26t3IdKmpm6NNwieNYMW9LWXdISke+rcWuSzb59c1yO6yBHGMZdLZpB2hmpI1O14RZ97DdjTn9rzMxLQK0cUiUyxdXEpH4PnI0PJ48MdDFDHOhjIn5lM1Wf7UJAKrHTn7ObMiYO7SAWycVWQwTTn1e2UWCPmfXFsP7Kddj2D9U/Tx+/8V+wtjiuInxenV7jwZDmoEa7i1vy2Qe9yhVmY+4hpy3gfkcDv2nHSCWCbfXXOXDTyS9eFGh5DdHZKqw94JQS+nfeIQMqkO8ccxu5VH7QcZs2jFprrkVB35cN7cgCBWuFTcKJOO6OsKzWnG5aH2Ksbw/Evaf8FAizfB4OsgY09Ilui31J9W6g4bq6EuD3t6ZzbWSXzk/ftYK5cGvM3YH8NbHIes7Z6neaDnbwNVl8ESk5FcYdcRc6mhv214vDxFPUdDitWuQ9M366NZqmVs+S8RAtyX1A8DaLRj4nbKuCZX4ZKrfJgY=">
  </div>
  <div class="aspNetHidden">
    <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="CA0B0334">
  </div>
  <script type="text/javascript">
    $(document).ready(function() {
      $('#btnNext').click(function() {
        $('#dvStep1').hide();
        switch ($('input[name=gpChoice]:checked').val()) {
          case '0':
            $('#dvStep2').show();
            break;
          case '2':
            $('#dvFFStep2').show();
            break;
          case '1':
            $('#dvStep2').show();
            break;
        };
        return false;
      });
      $('#hrBack').click(function() {
        $('#dvStep2').hide();
        $('#dvStep1').show();
        return false;
      });
      $('#hrBackFF').click(function() {
        $('#dvFFStep2').hide();
        $('#dvStep1').show();
        return false;
      });
      jQuery(function($) {
        $("#txtArrivalDate").mask("99/99/9999");
        $("#txtDepartureDate").mask("99/99/9999");
      });
      $('#btnSearch').click(function() {
        if ($('#form1').valid()) {
          setTimeout(function() {
            $('#btnSearch').attr('disabled', 'disabled');
            $('#btnSearch').val('processing');
          }, 10);
        }
      });
      $('#btnLogin').click(function() {
        if ($('#form1').valid()) {
          setTimeout(function() {
            $('#btnLogin').attr('disabled', 'disabled');
            $('#btnLogin').val('processing');
          }, 10);
        }
      });
      jQuery.validator.addMethod("company", function(state, element) {
        if ($('#CompanyDDM').val() == '') {
          return false;
        } else {
          return true;
        }
      }, "Please select a company");
      $("#form1").validate({
        rules: {
          txtArrivalDate: {
            dpDate: true,
            required: function() {
              if ($('input[name=gpChoice]:checked').val() == '0' || $('input[name=gpChoice]:checked').val() == '1' || document.getElementById("dvStep2").style.display == "block") {
                return true;
              } else {
                return false;
              }
            },
            dpCompareDate: {
              lessThan: '#txtDepartureDate'
            }
          },
          txtDepartureDate: {
            dpDate: true,
            required: function() {
              if ($('input[name=gpChoice]:checked').val() == '0' || $('input[name=gpChoice]:checked').val() == '1' || document.getElementById("dvStep2").style.display == "block") {
                return true;
              } else {
                return false;
              }
            },
            dpCompareArrDepDays: {
              greaterThan: '#txtArrivalDate'
            }
          },
          txtFirstName: {
            required: function() {
              if ($('input[name=gpChoice]:checked').val() == '2') {
                return true;
              } else {
                return false;
              }
            }
          },
          txtLastName: {
            required: function() {
              if ($('input[name=gpChoice]:checked').val() == '2') {
                return true;
              } else {
                return false;
              }
            }
          },
          txtEmail: {
            email: true,
            required: function() {
              if ($('input[name=gpChoice]:checked').val() == '2') {
                return true;
              } else {
                return false;
              }
            }
          },
          txtlogin: {
            required: true,
            minlength: 4
          },
          txtpassword: {
            required: true,
            minlength: 4
          },
          CompanyDDM: {
            required: true,
            company: true
          }
        },
        errorPlacement: function(error, element) {
          switch (element.attr('id')) {
            case "txtArrivalDate":
              error.appendTo($('#adErrorbox'));
              break;
            case "txtDepartureDate":
              error.appendTo($('#ddErrorBox'));
              break;
            case "txtFirstName":
              error.appendTo($('#fnErrorBox'));
              break;
            case "txtLastName":
              error.appendTo($('#lnErrorBox'));
              break;
            case "txtEmail":
              error.appendTo($('#emErrorBox'));
              break;
            case "txtlogin":
              error.appendTo($('#idErrorBox'));
              break;
            case "txtpassword":
              error.appendTo($('#pwErrorBox'));
              break;
            case "CompanyDDM":
              error.appendTo($('#cpErrorBox'));
              break;
          }
        },
        messages: {
          txtArrivalDate: {
            dpCompareDate: "Arrival must be before Departure",
            required: "Please enter a date.",
            dpDate: "Please enter a valid date"
          },
          txtDepartureDate: {
            required: "Please enter a date.",
            dpDate: "Please enter a valid date",
            dpCompareArrDepDays: "The Maximum stay per hotel is 15 days.</br>Please adjust your Arrival and Departure Dates accordingly."
          },
          txtFirstName: {
            required: "Please enter name."
          },
          txtLastName: {
            required: "Please enter name."
          },
          txtEmail: {
            required: "Please enter email.",
            email: "Please enter email."
          },
          CompanyDDM: {
            required: "Please select a company"
          },
          txtlogin: {
            required: "Please enter employee ID",
            minlength: "ID too short"
          },
          txtpassword: {
            required: "Please enter your password",
            minlength: "Password too short"
          }
        }
      });
      //        var STO_value = getQuerystring('STO');
      //        if (STO_value != null && typeof (STO_value) != "undefined" && STO_value != '') {
      //            if (STO_value == "true") {
      //                if (document.getElementById('pnlSessionLogoutError') != null) {
      //                    document.getElementById('pnlSessionLogoutError').style.display = "block";
      //                    document.getElementById('lblSessionLogoutError').innerHTML = "Your session has expired. Please login again.";
      //                }
      //            }
      //        }
      //        var LO_value = getQuerystring('LO');
      //        if (LO_value != null && typeof (LO_value) != "undefined" && LO_value != '') {
      //            if (LO_value == "true") {
      //                if (document.getElementById('pnlSessionLogoutError') != null) {
      //                    document.getElementById('pnlSessionLogoutError').style.display = "block";
      //                    document.getElementById('lblSessionLogoutError').innerHTML = "Your have been logged out. Please login again.";
      //                }
      //            }
      //        }
      eraseCookie("CookieSessionVal");
      eraseCookie("LogOutVal");
      var cookieValue = readCookie("RegBackVal");
      if (cookieValue != null && typeof(cookieValue) != "undefined" && cookieValue != '') {
        if (cookieValue == "true") {
          eraseCookie("RegBackVal");
          $('#dvStep1').hide();
          $('#dvStep2').show();
        }
      }
    });

    function getQuerystring(key, default_) {
      if (default_ == null) default_ = "";
      key = key.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
      var regex = new RegExp("[\\?&]" + key + "=([^&#]*)");
      var qs = regex.exec(window.location.href);
      if (qs == null) return default_;
      else return qs[1];
    }
  </script>
  <!--<div id="dialog" title=""></div>-->
  <div class="mainContainer">
    <!-- H E A D E R -->
    <div class="headerContainer">
      <div class="header">
        <div class="headerLogo">
          <a href="/"><img src="/images/shared/header/logo-Mlife-insider.gif" alt="Mlife Insider" border="0"></a>
        </div>
        <div class="headerShoutOut">
          <span class="title">MGM Resorts Employee Reservations</span><br>
        </div>
      </div>
    </div>
    <!--
<div class="navigationContainer">
	<div class="navigation">
    	<img src="/images/shared/header/divider-navigation.jpg" />
    	<a href="" class="off">Room Search</a>
        <img src="/images/shared/header/divider-navigation.jpg" />
        <a href="" class="off">Rewards</a>
        <img src="/images/shared/header/divider-navigation.jpg" />
        <a href="" class="on">Program Terms</a>
        <img src="/images/shared/header/divider-navigation.jpg" />
        <a href="" class="off">Contact Us</a>
        <img src="/images/shared/header/divider-navigation.jpg" />
    </div>
</div>
-->
    <div class="headerBorder"></div>
    <!-- E N D  O F  H E A D E R -->
    <!-- C O N T E N T -->
    <div class="homeContentContainer">
      <div class="homeImageContainer">
        <!-- step 1 - start -->
        <!-- step 2 - booking for self -->
        <!-- step 2 - sharing rates -->
        <!-- step 3 - thank you for sharing rates -->
        <!-- logging in -->
        <!-- error panel -->
        <div id="pnlError">
          <div class="errorPanel">
            <span id="lblError">Please log in to <a href="http://mymgm.com" target="_blank'" style="color:#ffffff;">mymgm.com</a></span>
          </div>
        </div>
        <!-- Logout panel -->
      </div>
      <!-- 3 pods -->
      <div class="homeProgramContainer">
        <div class="pod2">
          <span class="title">MGM Resorts International Employee Rates</span> As an MGM Resorts International employee, you may receive 20% off room rates.<br>
          <brif you="" are="" experiencing="" issues="" with="" book="" a="" room="" and="" or="" show,="" click="" here="" to="" open="" ticket="" it.=""><br>
          </brif>
        </div>
        <div class="pod2" style="border-right: 0px;">
          <span class="title">Share your Employee Rates with Friends and Family</span> The discounted employee rates are available to you, your friends, and family. The rates are not accessible to the public and should only be shared with the people
          you consider to be your friends and family. Employee are prohibited from benefiting financially or personally from offering the special MGM Resorts employee rates.
        </div>
        <!--
                <div class="pod">
                	<span class="title">Take Advantage Today!</span>
                    Select from one of the above options.
                </div>
                -->
      </div>
    </div>
    <div class="push"></div>
  </div>
  <!-- E N D  O F  C O N T E N T -->
  <!-- F O O T E R -->
  <div class="footerContainer">
    <div class="footer">
      <!-- corporate logo -->
      <div class="footerCorpLogo">
        <a href="http://www.mgmresorts.com" target="_blank"><img src="/images/shared/footer/New_logo-mgm-resorts-international.png" alt="MGM Resorts International" border="0"></a>
      </div>
      <!-- footer links -->
      <div class="footerCopyright" style="text-align:left;">
        <a href="https://www.bellagio.com" target="_blank" class="propertyLink">BELLAGIO<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.aria.com" target="_blank" class="propertyLink">ARIA<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.vdara.com" target="_blank" class="propertyLink">VDARA<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.mgmgrand.com" target="_blank" class="propertyLink">MGM GRAND<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.signaturemgmgrand.com" target="_blank" class="propertyLink">THE SIGNATURE AT MGM GRAND<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.mandalaybay.com" target="_blank" class="propertyLink">MANDALAY BAY<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;<br>
        <a href="https://www.delanolasvegas.com" target="_blank" class="propertyLink">DELANO™ LAS VEGAS<sup class="footerTrademark"></sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.mirage.com" target="_blank" class="propertyLink">THE MIRAGE<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.parkmgm.com" target="_blank" class="propertyLink">PARK MGM<sup class="footerTrademark">™</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.newyorknewyork.com" target="_blank" class="propertyLink">NEW YORK-NEW YORK<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.luxor.com" target="_blank" class="propertyLink">LUXOR<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.excalibur.com" target="_blank" class="propertyLink">EXCALIBUR<sup class="footerTrademark">®</sup></a>&nbsp;&nbsp;&nbsp;&nbsp;<br>
        <a href="http://www.beaurivage.com" target="_blank" class="propertyLink">BEAU RIVAGE<sup class="footerTrademark">®</sup> BILOXI, MISSISSIPPI</a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.goldstrike.com" target="_blank" class="propertyLink">GOLD STRIKE<sup class="footerTrademark">®</sup> TUNICA, MISSISSIPPI</a>&nbsp;&nbsp;&nbsp;&nbsp;<br>
        <a href="https://www.mgmgranddetroit.com" target="_blank" class="propertyLink">MGM GRAND<sup class="footerTrademark">®</sup> DETROIT, MICHIGAN</a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.mgmspringfield.com" target="_blank" class="propertyLink">MGM Springfield<sup class="footerTrademark">®</sup> Springfield, Massachusetts</a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="http://www.mgmmacau.com" target="_blank" class="propertyLink">MGM MACAU<sup class="footerTrademark">™</sup>, CHINA</a>&nbsp;&nbsp;&nbsp;&nbsp;<br>
        <a href="http://www.mgmgrandsanya.com" target="_blank" class="propertyLink">MGM GRAND<sup class="footerTrademark">®</sup> SANYA, CHINA</a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.mgmnationalharbor.com" target="_blank" class="propertyLink">MGM NATIONAL HARBOR<sup class="footerTrademark">®</sup>, MARYLAND</a>&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="https://www.theborgata.com" target="_blank" class="propertyLink">BORGATA<sup class="footerTrademark">®</sup> HOTEL, CASINO &amp; SPA</a><br>
        <img src="/images/shared/icons/lock.gif" align="absmiddle">&nbsp;<a href="#">Privacy and Security</a>. © 2022 MGM RESORTS INTERNATIONAL<sup class="footerTrademark">®</sup>. All Rights Reserved.
      </div>
      <div class="footerMlife">
        <a href="https://www.mlife.com" target="blank"><img src="/images/shared/footer/logo-mlife.gif" alt="Mlife" border="0"></a>
      </div>
    </div>
  </div>
  <!-- E N D  O F  F O O T E R -->
  <!-- BEGIN GOOGLE -->
  <script type="text/javascript">
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-16462907-2']);
    _gaq.push(['_trackPageview', 'start_error__.aspx']);
    (function() {
      var ga = document.createElement('script');
      ga.type = 'text/javascript';
      ga.async = true;
      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
      var s = document.getElementsByTagName('script')[0];
      s.parentNode.insertBefore(ga, s);
    })();
  </script>
  <!-- END GOOGLE -->
</form>

Text Content

MGM Resorts Employee Reservations


Please log in to mymgm.com
MGM Resorts International Employee Rates As an MGM Resorts International
employee, you may receive 20% off room rates.


Share your Employee Rates with Friends and Family The discounted employee rates
are available to you, your friends, and family. The rates are not accessible to
the public and should only be shared with the people you consider to be your
friends and family. Employee are prohibited from benefiting financially or
personally from offering the special MGM Resorts employee rates.

BELLAGIO®     ARIA®     VDARA®     MGM GRAND®     THE SIGNATURE AT MGM
GRAND®     MANDALAY BAY®    
DELANO™ LAS VEGAS     THE MIRAGE®     PARK MGM™     NEW YORK-NEW YORK®    
LUXOR®     EXCALIBUR®    
BEAU RIVAGE® BILOXI, MISSISSIPPI     GOLD STRIKE® TUNICA, MISSISSIPPI    
MGM GRAND® DETROIT, MICHIGAN     MGM Springfield® Springfield, Massachusetts    
MGM MACAU™, CHINA    
MGM GRAND® SANYA, CHINA     MGM NATIONAL HARBOR®, MARYLAND     BORGATA® HOTEL,
CASINO & SPA
 Privacy and Security. © 2022 MGM RESORTS INTERNATIONAL®. All Rights Reserved.