|
|
|
@ -77,11 +77,17 @@
|
|
|
|
|
<Field Horizontal>
|
|
|
|
|
<FieldLabel ColumnSize="ColumnSize.Is2">Mot de passe</FieldLabel>
|
|
|
|
|
<FieldBody ColumnSize="ColumnSize.Is10">
|
|
|
|
|
<TextEdit Placeholder="Entrez votre mot de passe" @bind-Text="@Requete.MotDePasse">
|
|
|
|
|
<Feedback>
|
|
|
|
|
<ValidationError />
|
|
|
|
|
</Feedback>
|
|
|
|
|
</TextEdit>
|
|
|
|
|
<div class="input-group">
|
|
|
|
|
<TextEdit @bind-Text="@Requete.MotDePasse"
|
|
|
|
|
Type="@(showPassword ? "text" : "password")"
|
|
|
|
|
Class="form-control" Placeholder="Mot de passe" />
|
|
|
|
|
|
|
|
|
|
<span class="input-group-btn">
|
|
|
|
|
<button class="btn btn-default" type="button" @onclick="ToggleShowPassword">
|
|
|
|
|
<i class="@(showPassword ? "fa fa-eye-slash" : "fa fa-eye")"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</FieldBody>
|
|
|
|
|
</Field>
|
|
|
|
|
</Validation>
|
|
|
|
@ -92,11 +98,17 @@
|
|
|
|
|
<Field Horizontal>
|
|
|
|
|
<FieldLabel ColumnSize="ColumnSize.Is2">Confirmer le mot de passe</FieldLabel>
|
|
|
|
|
<FieldBody ColumnSize="ColumnSize.Is10">
|
|
|
|
|
<TextEdit Placeholder="Entrez votre mot de à nouveau" @bind-Text="@Requete.MotDePasseConfirmation">
|
|
|
|
|
<Feedback>
|
|
|
|
|
<ValidationError />
|
|
|
|
|
</Feedback>
|
|
|
|
|
</TextEdit>
|
|
|
|
|
<div class="input-group">
|
|
|
|
|
<TextEdit @bind-Text="@Requete.MotDePasseConfirmation"
|
|
|
|
|
Type="@(showPasswordConf ? "text" : "password")"
|
|
|
|
|
Class="form-control" Placeholder="Confirmez mot de passe" />
|
|
|
|
|
|
|
|
|
|
<span class="input-group-btn">
|
|
|
|
|
<button class="btn btn-default" type="button" @onclick="ToggleShowPasswordConf">
|
|
|
|
|
<i class="@(showPasswordConf ? "fa fa-eye-slash" : "fa fa-eye")"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</FieldBody>
|
|
|
|
|
</Field>
|
|
|
|
|
</Validation>
|
|
|
|
|