Field Definitions: This is the area where you define the fields 

-----------------------------------------------------------------------------------

Captcha Access Section




-----------------------------------------------------------------------------------

Requestor Identify Section


Hidden field and rule for normalizing the phone number

-----------------------------------------------------------------------------------

DoD Organizational Affiliation Section

Us DOD Activity Code


DoD Contractor  Additional Fields



Rules to Hide and Show addition fields


 ----------------------------------------------------------------------------------

Sponsoring Activity Section



------------------------------------------------------------------------------------

Multi Factor Authentication type




--------------------------------------------------------------------------------------

Cybersecurity Training Certificate Section



------------------------------------------------------------------------------------

IP Catcher



 --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Below is where the Fields are shown on the page. 

 

 

 

 

  


Access to the MAF DMO site requires multi-factor authentication (MAF). We support 2 methods to satisfy this requirement:

  1. Authentication using a DoD issued Common Access Card (CAC)
  2. Authentication using username and password, augmented by a second factor using Duo. Duo supports authentication using push verification or one-time passcode (OTP) using the Duo mobile app. Alternatively, Duo support hardware tokens.

When electing which method to chose below, consider the locations and system you expect to access the web site from, and select the method that will best support access from that environemnt. (e.g. if you expect to require access the website from a location where you are unable to take you cell phone, you must elect ether CAC or Duo Hard Token).



Access to the MAF DMO website requires verification that you have completed cyber security training, such as the DISA Cyber Awareness Challenge or equivalent corporate training. This training must have been completed within the last 12 months. Continued access to the MAF DMO web site will require maintaining cyber security training annually.


If you are able, uploading your cyber security training certificate here now will help expedit the process of verifying your eligibility for access to the MAF DMO Web site.



<script>
function formatPhoneNumber(phoneNumberString) {
  var match = phoneNumberString.match(
    /^\s*(?:\+?(\d{1,3}))?[-. (]*(\d{3})[-. )]*(\d{3})[-. ]*(\d{4})(?: *x(\d+))?\s*$/
  );
  if (match) {
    return `${match[1] ? "+"+match[1]+" " : ""}(${match[2]}) ${match[3]}-${match[4]}`;
  }
  return "";
}

function setPhoneNumberValue(formName, formId) {
  AJS.$(formName)
    .find("#i_PhoneNumberFormatted")
    .val(formatPhoneNumber(AJS.$(formName).find("#i_PhoneNumber").val()));
}

AJS.$('#rw_search_container').hide();
</script>