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.
 
 
 
 

55 lines
2.6 KiB

@model Sevomin.Models.AvalinViewModel
@{
ViewBag.Title = "ویرایش پروفایل";
}
@Html.Partial("PostResult", ViewBag.Result as Sevomin.Models.PostResultViewModel)
<div class="page-header rtl">
<h1>ویرایش پروفایل <small>@Model.DisplayName</small></h1>
</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>
}