You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
984 B

@model Sevomin.Models.DovominJobViewModel
@{
ViewBag.Title = ViewBag.ShortJobDescription;
}
@Html.Partial("PostResult", ViewBag.Result as Sevomin.Models.PostResultViewModel)
<div class="col-md-12 rtl">
<h4 class="rtl">@ViewBag.ShortJobDescription</h4>
@Html.Partial("JobDigest", (Sevomin.Models.JobViewModel)ViewBag.Job)
@using (Html.BeginForm("Apply", "Job", FormMethod.Post, new { role = "form" }))
{
@Html.AntiForgeryToken()
<div class="form-group">
@Html.LabelFor(model => model.CoverLetter)
<p>برای کارفرمای مربوطه پیغامی داری بگو</p>
@Html.TextAreaFor(model => model.CoverLetter, new { @class = "form-control" })
@Html.ValidationMessageFor(m => m.CoverLetter)
</div>
<div class="clearfix">
<button type="submit" class="btn btn-primary pull-left">اعلام آمادگی به کارفرما</button>
</div>
}
</div>