diff options
author | Alex Auvolat <alex@adnab.me> | 2021-08-16 16:27:20 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-08-16 16:27:20 +0200 |
commit | 01bf4aa52279630910ce33d065efcda77e6df7bb (patch) | |
tree | 78dd9c82e09388aae5fd9f4847c0b854f9846de5 /templates/profile.html | |
parent | e94bd728ec7f709883fb232b2eb123543ba5660e (diff) | |
download | guichet-01bf4aa52279630910ce33d065efcda77e6df7bb.tar.gz guichet-01bf4aa52279630910ce33d065efcda77e6df7bb.zip |
Fix directory searching
Diffstat (limited to 'templates/profile.html')
-rw-r--r-- | templates/profile.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/profile.html b/templates/profile.html index 8704e23..edf9d76 100644 --- a/templates/profile.html +++ b/templates/profile.html @@ -5,7 +5,7 @@ <h4>Modifier mon profil</h4> <a class="ml-auto btn btn-info" href="/">Retour</a> </div> -<h5>Photo de profil</h5> + {{if .ErrorMessage}} <div class="alert alert-danger mt-4">Impossible d'effectuer la modification. <div style="font-size: 0.8em">{{ .ErrorMessage }}</div> @@ -70,8 +70,8 @@ </div> <div class="form-group"> - <label for="description">Description (180 caractères maximum)</label> - <textarea id="description" name="description" class="form-control" maxlength="180">{{ .Description }}</textarea> + <label for="description">Description</label> + <textarea id="description" name="description" class="form-control">{{ .Description }}</textarea> </div> <button type="submit" class="btn btn-primary">Enregistrer les modifications</button> </form> |