@model EmployeeRegistration.Models.EmployeeModel
<link href="~/Content/CSS/bootstrap.css" rel="stylesheet" />
<link href="~/Content/CSS/bootstrap.min.css" rel="stylesheet" />
@using (Html.BeginForm("EmployeeView", "Employee", FormMethod.Post))
@Html.ValidationSummary(true)
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<div class="form-group row">
<label class="col-sm-2 col-form-label" style="text-align: right;">First Name:</label>
@Html.EditorFor(model => model.FirstName, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.FirstName, "", new { @class = "text-danger" })
<label style="text-align: right;" class="col-sm-2 col-form-label">Last Name:</label>
@Html.EditorFor(model => model.LastName, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.LastName, "", new { @class = "text-danger" })
<div class="form-group row">
<label class="col-sm-2 col-form-label" style="text-align: right;">EmailId:</label>
@Html.EditorFor(model => model.EmailId, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.EmailId, "", new { @class = "text-danger" })
<label style="text-align: right;" class="col-sm-2 col-form-label">Mobile Number:</label>
@Html.EditorFor(model => model.MobileNumber, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.MobileNumber, "", new { @class = "text-danger" })
<div class="form-group row">
<label class="col-sm-2 col-form-label" style="text-align: right;">Address:</label>
@Html.EditorFor(model => model.Address, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Address, "", new { @class = "text-danger" })
<label style="text-align: right;" class="col-sm-2 col-form-label">Postion Applied:</label>
@Html.EditorFor(model => model.MobileNumber, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.MobileNumber, "", new { @class = "text-danger" })
<div class="form-group row">
<label class="col-sm-2 col-form-label" style="text-align: right;">Age:</label>
@Html.EditorFor(model => model.Age, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Age, "", new { @class = "text-danger" })
<label style="text-align: right;" class="col-sm-2 col-form-label">Experience:</label>
@Html.EditorFor(model => model.Experience, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Experience, "", new { @class = "text-danger" })
<div class="form-group row">
<label style="text-align:right;" class="col-sm-2 col-form-label" id="Gender">Gender:</label>
<input type="radio" value="30%" name="pricetrip" id="radio30" checked="checked" class="radiobutton" />Male
<input type="radio" value="30%" name="pricetrip" id="radio3" class="radiobutton" />Female
<div style="text-align: center">
<input type="submit" value="Save" id="SaveId" />