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.

64 lines
3.3 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
  1. @using Sevomin.Models
  2. @model AvalinViewModel
  3. @{
  4. ViewBag.Title = "ویرایش پروفایل";
  5. }
  6. @Html.Partial("PostResult", ViewBag.Result as PostResultViewModel)
  7. <div class="page-header rtl">
  8. <h1>ویرایش پروفایل <small>@Model.DisplayName</small></h1>
  9. </div>
  10. <div class="alert alert-info rtl">
  11. <p>
  12. اطلاعاتی که در این صفحه وارد می‌کنید در متن آگهی‌ها قرار نمی‌گیرند و کاربران سایت نیز به آن‌ها دسترسی نخواهند داشت. فیلدها اجباری نیستند و هرکدام را که مایل باشید می‌توانید پر کنید؛ تکمیل بودن فیلدها به تقویت ارتباط شما و ما کمک خواهد کرد.
  13. بعد از تکمیل ثبت نام می‌توانید بلافاصله آگهی یا آگهی‌های استخدام خود را تدوین و منتشر کنید.
  14. </p>
  15. </div>
  16. @using (Html.BeginForm("ProfileAvalin", "Account", FormMethod.Post, new { role = "form", @class = "assess-inputs", enctype = "multipart/form-data" }))
  17. {
  18. <div class="row" style="margin-bottom: 20px">
  19. <div class="col-md-12">
  20. <button type="submit" class="btn btn-primary pull-left">به روز رسانی پروفایل</button>
  21. </div>
  22. </div>
  23. <div class="row rtl">
  24. <div class="panel panel-default">
  25. <div class="panel-body">
  26. <div class="col-md-6">
  27. <div class="form-group">
  28. @Html.LabelFor(model => model.CompanyPhoneNumber)
  29. @Html.TextBoxFor(model => model.CompanyPhoneNumber, new { @class = "form-control" })
  30. </div>
  31. <div class="form-group">
  32. @Html.LabelFor(model => model.EMail)
  33. @Html.TextBoxFor(model => model.EMail, new { @class = "form-control" })
  34. </div>
  35. <div class="form-group">
  36. @Html.LabelFor(model => model.Address)
  37. @Html.TextAreaFor(model => model.Address, new { @class = "form-control" })
  38. </div>
  39. </div>
  40. <div class="col-md-6">
  41. <div class="form-group">
  42. @Html.LabelFor(model => model.CompanyName)
  43. @Html.TextBoxFor(model => model.CompanyName, new {@class = "form-control"})
  44. </div>
  45. <div class="form-group">
  46. @Html.LabelFor(model => model.NationalId)
  47. @Html.TextBoxFor(model => model.NationalId, new {@class = "form-control"})
  48. </div>
  49. <div class="form-group">
  50. @Html.LabelFor(model => model.RegisterId)
  51. @Html.TextBoxFor(model => model.RegisterId, new {@class = "form-control"})
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. <div class="clearfix">
  58. <button type="submit" class="btn btn-primary pull-left">به روز رسانی پروفایل</button>
  59. </div>
  60. }