You'll need a textbox, name it txtPassword.
Then, on click of a button, or even on lost focus of the textbox, run the below code
Dim PassWord As String
strPassword = "12345"
If me.txtPassword = strPassword Then
DoCmd.OpenForm "Menuboard Admin"
DoCmd.Close acForm, "Menuboard Main Start"...