summaryrefslogtreecommitdiff
path: root/Views/Account
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-06-03 07:41:46 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-06-03 07:41:46 +0300
commit3bade8859bcd938b85c39ab16eaa0dcf8e01535f (patch)
tree9157e3f27d8007206c12d5ec0cf5f2936295c0e7 /Views/Account
parent81c1fc0c14253457c3c4fc24735e787ace1db70b (diff)
Mass refactoring
Diffstat (limited to 'Views/Account')
-rw-r--r--Views/Account/Create.cshtml8
1 files changed, 4 insertions, 4 deletions
diff --git a/Views/Account/Create.cshtml b/Views/Account/Create.cshtml
index 2fff64a..f871673 100644
--- a/Views/Account/Create.cshtml
+++ b/Views/Account/Create.cshtml
@@ -5,7 +5,7 @@
<html>
<head>
- <title>User Acccounts</title>
+ <title>User Acсounts</title>
<link href="/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
</head>
@@ -14,7 +14,7 @@
<form method="post">
<div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group">
- <label>User Name</label>
+ <label>Имя пользователя</label>
<input name="UserName" class="form-control" value="@Model.UserName" />
</div>
<div class="form-group">
@@ -22,11 +22,11 @@
<input name="Email" class="form-control" value="@Model.Email" />
</div>
<div class="form-group">
- <label>Password</label>
+ <label>Пароль</label>
<input name="Password" class="form-control" value="" />
</div>
<div class="py-2">
- <button type="submit" class="btn btn-primary">Submit</button>
+ <button type="submit" class="btn btn-primary">Сохранить</button>
<a class="btn btn-secondary" asp-page="list">Back</a>
</div>
</form>