

OptionMenu "AccountOptions"
{
    Title "Account"
    Option "Username", "account_username", "CHUD_HUDColors"
}


OptionMenu SURV_LoginMenu
{
    NetGameOnly

    Title "Account Log In"
    Position 100

    StaticText	"Log in to auto-save your inventory and XP:"
    StaticText  ""

    TextField	"Username",				"surv_username"
    TextField	"Password",				"surv_password"
    StaticText	" "
    Command		"Log in",				"puke 855"
    StaticText	" "
    StaticText	" "
    StaticText	"To register an account, visit:"
    StaticText	"http://auth.zandronum.com/register"

}


LISTMENU "MainMenu"
{
    IfGame(Doom, Chex)
    {
        StaticPatch 94, 2, "M_DOOM"
        Position 97, 72
        IfOption(ReadThis)
        {
            Position 97, 64
        }
    }

    TextItem "LOG IN", "a", "SURV_LoginMenu"

    IfGame(Doom, Strife, Chex)
    {
        PatchItem "M_NGAME", "n", "PlayerclassMenu"
        ifOption(SwapMenu)
        {
            PatchItem "M_LOADG", "l", "LoadGameMenu"
            PatchItem "M_SAVEG", "s", "SaveGameMenu"
            PatchItem "M_OPTION","o", "OptionsMenu"
        }
        else
        {
            PatchItem "M_OPTION","o", "OptionsMenu"
            PatchItem "M_LOADG", "l", "LoadGameMenu"
            PatchItem "M_SAVEG", "s", "SaveGameMenu"
        }
        ifOption(ReadThis)
        {
            PatchItem "M_RDTHIS","r", "ReadThisMenu"
        }
        PatchItem "M_QUITG", "q", "QuitMenu"
    }
    }
