| 12345678910111213141516171819202122232425262728293031323334 |
-
- @{
- Layout = null;
- }
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width" />
- <title>Messagerie - Connexion</title>
- <link href="~/Content/bootstrap.css" rel="stylesheet" />
- <link href="~/Content/Site.css" rel="stylesheet" />
- </head>
- <body>
- <div class="container">
- @using( Html.BeginForm( "Connexion", "Messagerie", FormMethod.Post, new { role = "form", @class = "form-horizontal" } ) ) {
- <div class="form-group">
- <label class="col-sm-2 control-label" for="nom">Vous êtes ?</label>
- <div class="col-sm-10">
- <input type="text" name="nom" class="form-control" id="nom" placeholder="Soyez pas timide...">
- </div>
- </div>
- <div class="form-group">
- <div class="col-sm-offset-2 col-sm-10">
- <input type="submit" value="Entrer" class="btn btn-primary" />
- </div>
- </div>
- }
- </div>
- </body>
- </html>
|