This system may contain and is approved up to Controlled Unclassified Information (CUI)

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
ConfiForms Form Definition
additionalFormAdminsWEB-DEV
hideAdminUItrue
formNameRequestorIdentify
autoDeletetrue
bypassAttachmentCreatePermissiontrue
secureStoragetrue
saveButtonLabelSubmit
readonlyAfterRegistrationtrue
showOnlyOwnRecordstrue


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

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

Captcha Access Section

CaptchaVerifiedComplete the CAPTCHA to Submitcaptchatrue




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

Requestor Identify Section

Enter your First NameFirstNameFirst Nametexttrue

Middle InitialMiddleInitialMiddle Initial text

Last NameLastNameLast Nametexttrue

Email AddressEmailEmail Addresstexttrue

(XXX) XXX-XXXXPhoneNumbertruePhone Numbertexttrue^\s*(?:\+?(\d{1,3}))?[-. (]*(\d{3})[-. )]*(\d{3})[-. ]*(\d{4})(?: *x(\d+))?\s*$

EntityTypeRequestor Entity Typetrue[USMil=US Military (Active Duty, National Guard, Reserver)|USGS=US DoD Civilian (GS)|USSeta=US DoD SETA|USDoDCtr=US DoD Contractor/Subcontractor|]Please Select One falseradio_group


Hidden field and rule for normalizing the phone number

PhoneNumberFormattedPhoneNumberFormattedtext

setPhoneNumberValue(formName, formId)Run custom JavaScripttruePhoneNumber

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

DoD Organizational Affiliation Section

Us DOD Activity Code

US DoD Activity CodeOrgAffiliationUS DoD Activity Codetext


DoD Contractor  Additional Fields

OrganizationOrgNameOrganizationtext

OrgAddress1Address Line 1text


OrgCityCitytext

OrgStateStatetext


Rules to Hide and Show addition fields


!EntityType:USDoDCtrOrgName, OrgAddress1, OrgAddress2, OrgCity, OrgStateHide containerEntityType#contractortrue

EntityType:USDoDCtrOrgAffiliationHide containerEntityType#propertrue

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

Sponsoring Activity Section

SponsActivitySponsoring Activityfalse[ALFCMC/WNS MAFDMO=ALFCMC/WNS MAFDMO|AMC MAFDMO=AMC MAFDMO|AFLCMC/WNS C-17=AFLCMC/WNS C-17|]selecttrue



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

Multi Factor Authentication type


MultiFactorMulti-Factor Authentication Typefalse[CAC=CAC|DUO=DUO|]selecttrue



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

Cybersecurity Training Certificate Section


CyberCertCybersecurity Training CertificateUpload Cybersecurity Training Certificate Herefile


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

IP Catcher

IPCatcherIP Addresstrueip



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

Below is where the Fields are shown on the page. 

RequestorIdentifyYou MAF DMO Account request has been submittd. Thank you for your interest in becoming a part of the MAF DMO community. Our support team will route your request for verification of itentity and approval by the respective sponsor. This process normally take 2 business days, but may be longer in certain circumstances. Our team will reach out to you via the registered email or phone number for any further communication.EmbeddedPlease confirm that you are ready to submit your request.#main-formnoneRequestor Identify

 FirstNametrueINLINE

 MiddleInitialtrueINLINE

 LastNametrueINLINE

PhoneNumbertrueINLINE

EmailtrueINLINE  

EntityTypetrueINLINE

properpropernoneDoD Organizational Affiliation

OrgAffiliationtruetrue

contractorcontractornoneDoD Contractor Affiliation

Organization NameOrgNametrue

 Address OrgAddress1true 

CityOrgCitytrue

StateOrgStatetrue


noneSponsoring Activity

SponsActivitytruetrue

noneMulti-Factor Authentication type

MultiFactortruetrue


Cyber Security Training Certificate

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.

No cyber security certificate file has been uploaded yet.CyberCert



captcha-boxCAPTCHA Verification

CaptchaVerifiedtrue

HTML
<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()));
}
</script>