Hi team
I have an image its on the center, now i want to figure it out as well on my text input for both user and password, including buttons as well. Here is my code below for this logic;
div data-="mainContent">

@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.ValidationSummary()

User
@Html.TextBoxFor(model => model.username, new { @class = "form-control", autocomplete = "off" })
@Html.ValidationMessageFor(model => model.username)
Password
@Html.PasswordFor(model => model.password, new { @class = "form-control", autocomplete = "off" })
@Html.ValidationMessageFor(model => model.password)
}
2 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ashutosh GuptaPosted Jan 22, 2020, 11:08 AM
Laxmidhar SahooPosted Jan 22, 2020, 11:00 AM