Skip to content

Commit

Permalink
Merge pull request #224 from kipergil/dev
Browse files Browse the repository at this point in the history
SMTP Password field is convert to type=password
  • Loading branch information
apexdodge authored Nov 9, 2024
2 parents 7bae3c8 + 2f5c743 commit 94b2c7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Raytha.Web/Areas/Admin/Views/Smtp/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<div class="col-lg-12">
<div class="mb-3">
<label class="form-label" asp-for="SmtpPassword"></label>
<input data-smtp--disablefields-target="smtpPassword" type="text" class="form-control @Model.HasError("SmtpPassword")" asp-for="SmtpPassword">
<input data-smtp--disablefields-target="smtpPassword" type="password" class="form-control @Model.HasError("SmtpPassword")" asp-for="SmtpPassword">
<div class="invalid-feedback">@Model.ErrorMessageFor("SmtpPassword")</div>
</div>
</div>
Expand All @@ -66,4 +66,4 @@
</div>
</div>
</div>
</div>
</div>

0 comments on commit 94b2c7a

Please sign in to comment.