First commit
This commit is contained in:
21
app/Views/auth/login.html
Normal file
21
app/Views/auth/login.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<section class="auth-shell panel stack" aria-labelledby="login-title">
|
||||
<header class="page-header page-header--compact">
|
||||
<h1 class="page-title" id="login-title">Connexion</h1>
|
||||
</header>
|
||||
|
||||
<form class="stack" method="post" action="{{ @BASE }}/login">
|
||||
<input type="hidden" name="csrf_token" value="{{ @csrfToken }}">
|
||||
|
||||
<label class="field">
|
||||
<span class="field-label">Nom d’utilisateur</span>
|
||||
<input class="control" type="text" name="username" autocomplete="username" required>
|
||||
</label>
|
||||
|
||||
<label class="field">
|
||||
<span class="field-label">Mot de passe</span>
|
||||
<input class="control" type="password" name="password" autocomplete="current-password" required>
|
||||
</label>
|
||||
|
||||
<button class="button" type="submit">Se connecter</button>
|
||||
</form>
|
||||
</section>
|
||||
Reference in New Issue
Block a user