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.
 
 
 
 

65 lines
3.3 KiB

@using Sevomin.Models
@model AvalinViewModel
@{
ViewBag.Title = "ویرایش پروفایل";
}
@Html.Partial("PostResult", ViewBag.Result as PostResultViewModel)
<div class="page-header rtl">
<h1>ویرایش پروفایل <small>@Model.DisplayName</small></h1>
</div>
<div class="alert alert-info rtl">
<p>
اطلاعاتی که در این صفحه وارد می‌کنید در متن آگهی‌ها قرار نمی‌گیرند و کاربران سایت نیز به آن‌ها دسترسی نخواهند داشت. فیلدها اجباری نیستند و هرکدام را که مایل باشید می‌توانید پر کنید؛ تکمیل بودن فیلدها به تقویت ارتباط شما و ما کمک خواهد کرد.
بعد از تکمیل ثبت نام می‌توانید بلافاصله آگهی یا آگهی‌های استخدام خود را تدوین و منتشر کنید.
</p>
</div>
@using (Html.BeginForm("ProfileAvalin", "Account", FormMethod.Post, new { role = "form", @class = "assess-inputs", enctype = "multipart/form-data" }))
{
<div class="row" style="margin-bottom: 20px">
<div class="col-md-12">
<button type="submit" class="btn btn-primary pull-left">به روز رسانی پروفایل</button>
</div>
</div>
<div class="row rtl">
<div class="panel panel-default">
<div class="panel-body">
<div class="col-md-6">
<div class="form-group">
@Html.LabelFor(model => model.CompanyPhoneNumber)
@Html.TextBoxFor(model => model.CompanyPhoneNumber, new { @class = "form-control" })
</div>
<div class="form-group">
@Html.LabelFor(model => model.EMail)
@Html.TextBoxFor(model => model.EMail, new { @class = "form-control" })
</div>
<div class="form-group">
@Html.LabelFor(model => model.Address)
@Html.TextAreaFor(model => model.Address, new { @class = "form-control" })
</div>
</div>
<div class="col-md-6">
<div class="form-group">
@Html.LabelFor(model => model.CompanyName)
@Html.TextBoxFor(model => model.CompanyName, new {@class = "form-control"})
</div>
<div class="form-group">
@Html.LabelFor(model => model.NationalId)
@Html.TextBoxFor(model => model.NationalId, new {@class = "form-control"})
</div>
<div class="form-group">
@Html.LabelFor(model => model.RegisterId)
@Html.TextBoxFor(model => model.RegisterId, new {@class = "form-control"})
</div>
</div>
</div>
</div>
</div>
<div class="clearfix">
<button type="submit" class="btn btn-primary pull-left">به روز رسانی پروفایل</button>
</div>
}