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

  1. @model Sevomin.Models.DovominJobViewModel
  2. @{
  3. ViewBag.Title = ViewBag.ShortJobDescription;
  4. }
  5. @Html.Partial("PostResult", ViewBag.Result as Sevomin.Models.PostResultViewModel)
  6. <div class="col-md-12 rtl">
  7. <h4 class="rtl">@ViewBag.ShortJobDescription</h4>
  8. @Html.Partial("JobDigest", (Sevomin.Models.JobViewModel)ViewBag.Job)
  9. @using (Html.BeginForm("Apply", "Job", FormMethod.Post, new { role = "form" }))
  10. {
  11. @Html.AntiForgeryToken()
  12. <div class="form-group">
  13. @Html.LabelFor(model => model.CoverLetter)
  14. <p>برای کارفرمای مربوطه پیغامی داری بگو</p>
  15. @Html.TextAreaFor(model => model.CoverLetter, new { @class = "form-control" })
  16. @Html.ValidationMessageFor(m => m.CoverLetter)
  17. </div>
  18. <div class="clearfix">
  19. <button type="submit" class="btn btn-primary pull-left">اعلام آمادگی به کارفرما</button>
  20. </div>
  21. }
  22. </div>