Index.cshtml 278 B

123456789101112131415
  1. 
  2. @{
  3. ViewBag.Title = "Login";
  4. }
  5. <h2>@ViewBag.Title</h2>
  6. @using( Html.BeginForm() ) {
  7. <p>Nom : @Html.TextBox( "nom" )</p>
  8. <p>Mdp : @Html.TextBox( "mdp" )</p>
  9. <p><input type="submit" value="Entrer" /></p>
  10. <p><input type="submit" name="creer" value="Créer" /></p>
  11. }