1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<J2V.Models.user>" %>
<% using (Html.BeginForm("Login", "Home", FormMethod.Post, new { @class = "search_form" }))
{ %>
<div>
<div class="editor-label">
<p>
<%= Html.LabelFor(m => m.iduser)%>
</p>
</div>
<div class="editor-label">
<p>
<%= Html.TextBoxFor(m => m.iduser, new { @class = "text longfield" })%>
<%= Html.ValidationMessageFor(m => m.iduser) %>
</p>
</div>
<div class="editor-label">
<p>
<%= Html.LabelFor(m => m.mdp) %>
</p>
</div>
<div class="editor-label">
<p>
<%= Html.PasswordFor(m => m.mdp, new { @class = "text longfield" })%>
<%= Html.ValidationMessageFor(m => m.mdp) %>
</p>
</div>
<input type="submit" value="Connecter" class="button" />
</div>
<% } %> |
Partager