Newbie here.
I have created an empty MVC project in VS2010 and I'm trying to format my view for authentication. So, I've added this to site.css:
.rez
{
color: Olive;
}
and this to my View:
@using (Html.BeginForm())
{
<div>
<label class="rez">Username</label><input type="text" name="Username"/>
</div>
<div>
Password<input type="password" name="Password"/>
</div>
<div>
<input type="submit" name="Log"/>
</div>
}
It's not working. I haven't touched routing or bundleconfig. I've configured web.config for authentication. _ViewStart and _Layout are also unchanged.
What am I doing wrong and more importantly how do I debug this issue. I'm using chrome.