@page @using Roblox.Dto.Users @model Roblox.Website.Pages.Auth.Application @{ Layout = "Shared/_Layout"; } @section MetaTags { Application } @if (Model.showBannerForOldUsers) {

You will have to fill out this application and get approved in order for your account to be reactivated. Sorry for the inconvenience.

}
@if (Model.errorMessage != null) {
@Model.errorMessage
}

Application

To join this website, you must fill out an application. This is done to prevent bots and malicious users from joining.

@if (Model.application == null) {

Already filled out the application? Click here to view its status.

} @if (Model.successMessage != null) {

@Model.successMessage

} @if (Model.application != null) {

You submitted an application on @Model.application.createdAt.ToString("f") UTC.

Application Status: @(Model.displayStatus)

@if (Model.application.status == UserApplicationStatus.Approved) {

Join URL: https://example.com/auth/signup?applicationId=@Model.application.joinId

} @if (Model.application.status == UserApplicationStatus.Rejected) {

Rejection Reason: @(Model.application.rejectionReason ?? "No reason specified.")

@Html.AntiForgeryToken()
}

Application ID: @Model.application.id

} else {

Requirements

  • You must be 13 years of age or older
  • You must have an active account on a public website such as Roblox or Twitter.

Step 1 - About Me

You can list some interests, favorite video games, why you want to join, things you can create (e.g. clothing or games), etc. A sentence or two is fine. Do NOT put personal information such as your age or email address.

Step 2 - Social URL

Paste a link to your profile on a public website. Examples include a Roblox profile, a Twitter account, a v3rmillion account, a Reddit account, etc.

Your account must have some activity on it, such as friends/followers, posts, games, or whatever constitutes activity on the site your are linking.

Step 3 - Verification

Copy the entire phrase in the blue box below and paste it into the about section of your social media profile. This is done so that we can verify you aren't impersonating someone.

@Model.verificationPhrase

Step 4 - Captcha

We just have to make sure you aren't a robot.

@Html.AntiForgeryToken()
}