@model Project_Unite.Models.CreateContestViewModel @{ ViewBag.Title = "Create contest"; }

Create contest

This page will let you create a ShiftOS community contest.

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary()
Contest name:
@Html.TextBoxFor(Model=>Model.Name, new { @class = "form-control" })
Contest description
@Html.TextAreaFor(Model => Model.Description, new { @class = "form-control" })
Video ID:
If you have posted a YouTube video for this contest, paste its ID here. @Html.TextBoxFor(Model => Model.VideoId, new { @class = "form-control" })
End date:
@Html.TextBoxFor(Model=>Model.EndDate, new { id = "datetimepicker", @class="form-control" })
Gold reward:
@Html.TextBoxFor(Model => Model.GoldReward, new { @class = "form-control" })
Silver reward:
@Html.TextBoxFor(Model => Model.SilverReward, new { @class = "form-control" })
Bronze reward:
@Html.TextBoxFor(Model => Model.BronzeReward, new { @class = "form-control" })

}