@model SomeModel
@Html.TextBoxFor(m => m.UserName, new {class="form-control uname",placeholder="Username" />
<input type="password" class="form-control pword" placeholder="Password" />
<a href="#"><small>Forgot Your Password?</small></a>
<button class="btn btn-success btn-block">Sign In</button>
Inherit the model, and then apply the html elements with the model values.
source
share