@model Project_Unite.Models.SubmitContestEntryViewModel @{ ViewBag.Title = "Submit contest entry"; }

Submit contest entry

So you want to enter into a community contest? Alrighty, just fill out this form and we'll enter you in.

@using (Html.BeginForm()) { @Html.ValidationSummary() @Html.AntiForgeryToken()
Submission name:
@Html.TextBoxFor(Model=>Model.Name, new { @class = "form-control" })
Description:
@Html.TextAreaFor(Model => Model.Description, new { @class = "form-control" })
What contest is this for?
@Html.DropDownListFor(Model => Model.ContestId, Model.Contests, new { @class = "form-control" })
YouTube video ID:
If you have a YouTube video for this submission, paste its ID here! @Html.TextBoxFor(Model => Model.VideoID, new { @class = "form-control" })
Attachment:
If your submission has a download associated with it, upload it here. Please note: Only .zip files are allowed. @Html.TextBoxFor(Model => Model.Download, new { type="file", @class = "form-control" })

}