Adefinir  Finale
signin.blade.php
Go to the documentation of this file.
1 @extends( "layouts.web_page" )
2 
3 
4 @section('title','Signin')
5 
6 @section('head')
7 <link rel="stylesheet" href="../css/bootstrap.min.css">
8 
9 <link rel="stylesheet" href="<?php echo asset('../css/app.css')?>" type="text/css">
10 @endsection
11 
12 @section('main')
13  @parent
14 
15 
16  {{-- <form action="authenticate" method="post">
17  @csrf
18  <label for="login">Login</label><input type="text" class="form-control" id="login" name="login" required autofocus>
19  <label for="password">Password</label> <input type="password" id="password" name="password" required>
20  <input type="submit" class="btn btn-primary" value="Signin">
21  </form> --}}
22 
23  <form action="authenticate" method="post">
24  @csrf
25  <div class="form-group">
26  <label for="login">Identifiant</label>
27  <input type="text" class="form-control" id="login" name="login" required autofocus>
28  </div>
29  <div class="form-group">
30  <label for="password">Mot de passe</label>
31  <input type="password" class="form-control" aria-describedby="pswwarning" id="password" name="password" required>
32  <small id="pswwarning" class="form-text text-muted">Ne partagez jamais votre mot de passe.</small>
33  </div>
34  <input type="submit" class="btn btn-warning" value="Connexion">
35  </form>
36 
37  <small id="pswwarning" class="form-text text-muted">Si vous avez pas encore de compte, <a href="/signup">créez un compte</a> d'abord..</small>
38 
39 @endsection