2020-02-09 16:35:16 +00:00
|
|
|
{{define "title"}}Profile |{{end}}
|
|
|
|
|
|
|
|
{{define "body"}}
|
2020-02-09 18:56:01 +00:00
|
|
|
<div class="d-flex">
|
|
|
|
<h4>Modifier mon profil</h4>
|
|
|
|
<a class="ml-auto btn btn-info" href="/">Retour</a>
|
|
|
|
</div>
|
2021-08-16 14:27:20 +00:00
|
|
|
|
2020-02-09 16:35:16 +00:00
|
|
|
{{if .ErrorMessage}}
|
2020-02-09 18:56:01 +00:00
|
|
|
<div class="alert alert-danger mt-4">Impossible d'effectuer la modification.
|
2020-02-09 16:35:16 +00:00
|
|
|
<div style="font-size: 0.8em">{{ .ErrorMessage }}</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if .Success}}
|
2020-02-09 18:56:01 +00:00
|
|
|
<div class="alert alert-success mt-4">
|
2020-02-09 16:45:22 +00:00
|
|
|
Profil enregistré.
|
|
|
|
</div>
|
2020-02-09 16:35:16 +00:00
|
|
|
{{end}}
|
2021-07-29 22:04:17 +00:00
|
|
|
<form method="POST" class="mt-4" enctype="multipart/form-data">
|
2021-08-16 13:30:14 +00:00
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label>Nom d'utilisateur:</label>
|
|
|
|
<input type="text" disabled="true" class="form-control" value="{{ .Status.Info.Username }}" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label for="mail">Adresse e-mail:</label>
|
|
|
|
<input type="text" id="mail" disabled="true" name="mail" class="form-control" value="{{ .Mail }}" />
|
|
|
|
</div>
|
2020-02-09 18:56:01 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="display_name">Nom complet:</label>
|
|
|
|
<input type="text" id="display_name" name="display_name" class="form-control" value="{{ .DisplayName }}" />
|
|
|
|
</div>
|
2021-08-16 13:30:14 +00:00
|
|
|
|
|
|
|
<h4>Informations complémentaires</h4>
|
|
|
|
{{if .ProfilePicture}}
|
|
|
|
<div class="float-right">
|
|
|
|
<a href="/picture/{{.ProfilePicture}}">
|
|
|
|
<img src="/picture/{{.ProfilePicture}}-thumb" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
2021-07-26 21:01:48 +00:00
|
|
|
<div class="form-group form-check">
|
|
|
|
{{if .Visibility}}
|
2021-07-29 22:04:17 +00:00
|
|
|
<input class="form-check-input" name="visibility" type="checkbox" id="visibility" value="on" checked>
|
2021-07-26 21:01:48 +00:00
|
|
|
{{else}}
|
|
|
|
<input class="form-check-input" name="visibility" type="checkbox" id="visibility">
|
|
|
|
{{end}}
|
2021-08-16 13:30:14 +00:00
|
|
|
<label class="form-check-label" for="visibility">Apparaître sur l'annuaire</label>
|
2021-07-26 21:01:48 +00:00
|
|
|
</div>
|
2021-08-16 13:30:14 +00:00
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-8 input-group mb-3 custom-file">
|
|
|
|
<label for="image">Photo de profil:</label>
|
2021-07-29 22:04:17 +00:00
|
|
|
<input type="file" name="image" class="custom-file-input" id="image">
|
2021-08-16 13:30:14 +00:00
|
|
|
<label class="custom-file-label" for="image">Photo de profil (jpeg, jpg or png)</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label for="given_name">Prénom:</label>
|
|
|
|
<input type="text" id="given_name" name="given_name" class="form-control" value="{{ .GivenName }}" />
|
2021-07-29 22:04:17 +00:00
|
|
|
</div>
|
2021-08-16 13:30:14 +00:00
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label for="surname">Nom de famille:</label>
|
|
|
|
<input type="text" id="surname" name="surname" class="form-control" value="{{ .Surname }}" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
2021-08-16 14:27:20 +00:00
|
|
|
<label for="description">Description</label>
|
|
|
|
<textarea id="description" name="description" class="form-control">{{ .Description }}</textarea>
|
2021-07-29 22:04:17 +00:00
|
|
|
</div>
|
2020-02-09 18:56:01 +00:00
|
|
|
<button type="submit" class="btn btn-primary">Enregistrer les modifications</button>
|
|
|
|
</form>
|
2021-07-29 22:04:17 +00:00
|
|
|
<script src="/static/javascript/minio.js"></script>
|
2020-02-09 16:35:16 +00:00
|
|
|
{{end}}
|