ChangePassword page : ajout icon et entry

pull/30/head
Leo TUAILLON 2 years ago
parent ebb09dcd68
commit 675722acef

@ -40,52 +40,82 @@
RowDefinitions="Auto, *, Auto, *,Auto,*">
<Label
Grid.Row="0"
Text="Old Password"
Text="Old Password Here :"
FontFamily="PoppinsBold"
TextColor="{StaticResource TextColorSecondary}"/>
<Border
Grid.Row="1"
Style="{StaticResource SecondaryBorder}">
Style="{StaticResource SecondaryBorder}"
Margin="0,30,10,20">
<Grid
Padding="5"
BackgroundColor="{StaticResource BackgroundSecondary}"
ColumnDefinitions="Auto,Auto,*">
<Image
Grid.Column="1"
Source="password_icon.svg">
</Image>
<Entry
Style="{StaticResource UserInput}"
IsPassword="True"
Placeholder="Type your old password here"/>
Grid.Column="2"
Placeholder="Old Password"/>
</Grid>
</Border>
<Label
Grid.Row="2"
Text="New password"
Grid.Row="0"
Text="New Password Here :"
FontFamily="PoppinsBold"
TextColor="{StaticResource TextColorSecondary}"/>
<Border
Grid.Row="3"
Style="{StaticResource SecondaryBorder}">
Style="{StaticResource SecondaryBorder}"
Margin="0,30,0,20">
<Grid
Padding="5"
BackgroundColor="{StaticResource BackgroundSecondary}"
ColumnDefinitions="Auto,Auto,*">
<Image
Grid.Column="1"
Source="password_icon.svg">
</Image>
<Entry
Style="{StaticResource UserInput}"
IsPassword="True"
Placeholder="Type your new password here"/>
Grid.Column="2"
Placeholder="Old Password"/>
</Grid>
</Border>
<Label
Grid.Row="4"
Text="Confirm the new password"
Grid.Row="0"
Text="Confirm New Password Here :"
FontFamily="PoppinsBold"
Margin="0,0,0,20"
TextColor="{StaticResource TextColorSecondary}"/>
<Border
Grid.Row="5"
Style="{StaticResource SecondaryBorder}">
Style="{StaticResource SecondaryBorder}"
Margin="0,30,0,20">
<Grid
Padding="5"
BackgroundColor="{StaticResource BackgroundSecondary}"
ColumnDefinitions="Auto,Auto,*">
<Image
Grid.Column="1"
Source="password_icon.svg">
</Image>
<Entry
Style="{StaticResource UserInput}"
IsPassword="True"
Placeholder="Type your new password here"/>
Grid.Column="2"
Placeholder="Old Password"/>
</Grid>
</Border>
</Grid>

Loading…
Cancel
Save