Hi Leah,
One possible way to show your message is by creating a user registration agreement with your text.
If you want to put a dropdown in your profile here are the steps you should take.
1. Copy the file mojoProfile.config and rename it to mycustomprofile.config
2. in user.config add this:
<add key="mojoProfileConfigFileName" value="mycustomprofile.config" />
The above is so you don't lose your profile customizations on upgrade.
3. Open your mycustomprofile.config file in a text editor and add this:
<add name="Status"
type="System.String"
allowMarkup="false"
labelResourceKey="Status"
lazyLoad="false"
requiredForRegistration="true"
allowAnonymous="false"
visibleToAnonymous="true"
visibleToAuthenticated="true"
visibleToUser="true"
editableByUser="true"
regexValidationExpression=""
validationErrorResourceKey=""
onlyAvailableForRoles=""
onlyVisibleForRoles=""
defaultValue=""
includeHelpLink="true"
>
<OptionList>
<Option value="Owner" TextResourceKey="Owner"></Option>
<Option value="Tenant" TextResourceKey="Tenant"></Option>
<Option value="Managing Agent" TextResourceKey="Managing Agent"></Option>
<Option value="Other" TextResourceKey="Other"></Option>
</OptionList>
</add>
Next, touch your Web.config file to recycle the app and this dropdown should appear on the registration page and user profile.
For more details about user profile configuration options, see this page: http://www.mojoportal.com/userprofileconfiguration.aspx
Hope it helps,
Joe