Connexion.cshtml 869 B

12345678910111213141516171819202122232425262728293031323334
  1. 
  2. @{
  3. Layout = null;
  4. }
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <meta name="viewport" content="width=device-width" />
  9. <title>Messagerie - Connexion</title>
  10. <link href="~/Content/bootstrap.css" rel="stylesheet" />
  11. <link href="~/Content/Site.css" rel="stylesheet" />
  12. </head>
  13. <body>
  14. <div class="container">
  15. @using( Html.BeginForm( "Connexion", "Messagerie", FormMethod.Post, new { role = "form", @class = "form-horizontal" } ) ) {
  16. <div class="form-group">
  17. <label class="col-sm-2 control-label" for="nom">Vous êtes ?</label>
  18. <div class="col-sm-10">
  19. <input type="text" name="nom" class="form-control" id="nom" placeholder="Soyez pas timide...">
  20. </div>
  21. </div>
  22. <div class="form-group">
  23. <div class="col-sm-offset-2 col-sm-10">
  24. <input type="submit" value="Entrer" class="btn btn-primary" />
  25. </div>
  26. </div>
  27. }
  28. </div>
  29. </body>
  30. </html>