2020-02-09 15:46:26 +00:00
|
|
|
{{define "title"}}{{end}}
|
2020-02-09 14:44:18 +00:00
|
|
|
|
|
|
|
{{define "body"}}
|
2020-02-09 16:45:22 +00:00
|
|
|
<h4>S'identifier</h4>
|
2020-02-09 14:44:18 +00:00
|
|
|
|
|
|
|
<form method="POST">
|
2020-02-09 15:46:26 +00:00
|
|
|
{{if .ErrorMessage}}
|
|
|
|
<div class="alert alert-danger">Impossible de se connecter.
|
|
|
|
<div style="font-size: 0.8em">{{ .ErrorMessage }}</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="username">Nom d'utilisateur:</label>
|
|
|
|
<input type="text" name="username" id="username" class="form-control" value="{{ .Username }}" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="password">Mot de passe:</label>
|
|
|
|
<input type="password" name="password" id="password" class="form-control" />
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">Se connecter</button>
|
2020-02-09 14:44:18 +00:00
|
|
|
</form>
|
|
|
|
{{end}}
|