<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>

<%: Html.LabelFor(x=>x.FullName,"Full Name:") %> <%: Html.TextBoxFor(x => x.FullName, new { @class = "text-input wide-input", @maxlength = "50" })%> <%: Html.ValidationMessageFor(x => x.FullName)%>

<%: Html.LabelFor(x=>x.Title,"Title:") %> <%: Html.TextBoxFor(x => x.Title, new { @class = "text-input wide-input", @maxlength = "50" })%> <%: Html.ValidationMessageFor(x=>x.Title) %>

<%: Html.LabelFor(x => x.Org, "Organization:")%> <%: Html.TextBoxFor(x => x.Org, new { @class = "text-input wide-input", @maxlength = "50" })%> <%: Html.ValidationMessageFor(x => x.Org)%>