cadoles-profile/cmd/server/templates/layouts/login.html.tmpl

45 lines
1.5 KiB
Cheetah

{{define "title"}}Gestionnaire de profil - Cadoles{{end}}
{{define "head_style"}}
<link rel="stylesheet" href="/css/login.css" />
{{end}}
{{define "body"}}
<section class="hero is-fullheight login">
<div class="hero-body">
<div class="container">
<div class="column is-4 is-offset-4">
{{template "flash" .}}
<div class="has-text-centered has-margin-top-small">
<div class="box">
<figure class="avatar">
<img src="/img/logo.svg" width="128" height="128">
</figure>
<h4 class="title is-4">Gestionnaire de profil</h4>
<form method="POST">
<div class="field">
<div class="control">
<input class="input is-normal"
name="username" type="text"
value="{{ .Username }}"
autocomplete="username"
placeholder="Votre identifiant" autofocus="">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-normal"
name="password" type="password"
autocomplete="current-password"
placeholder="Votre mot de passe">
</div>
</div>
{{ .csrfField }}
<button class="button is-block is-info is-normal is-fullwidth">S'identifier</button>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
{{end}}
{{template "base" .}}