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,*"> RowDefinitions="Auto, *, Auto, *,Auto,*">
<Label <Label
Grid.Row="0" Grid.Row="0"
Text="Old Password" Text="Old Password Here :"
FontFamily="PoppinsBold" FontFamily="PoppinsBold"
TextColor="{StaticResource TextColorSecondary}"/> TextColor="{StaticResource TextColorSecondary}"/>
<Border <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 <Entry
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
IsPassword="True" Grid.Column="2"
Placeholder="Type your old password here"/> Placeholder="Old Password"/>
</Grid>
</Border> </Border>
<Label <Label
Grid.Row="2" Grid.Row="0"
Text="New password" Text="New Password Here :"
FontFamily="PoppinsBold" FontFamily="PoppinsBold"
TextColor="{StaticResource TextColorSecondary}"/> TextColor="{StaticResource TextColorSecondary}"/>
<Border <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 <Entry
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
IsPassword="True" Grid.Column="2"
Placeholder="Type your new password here"/> Placeholder="Old Password"/>
</Grid>
</Border> </Border>
<Label <Label
Grid.Row="4" Grid.Row="0"
Text="Confirm the new password" Text="Confirm New Password Here :"
FontFamily="PoppinsBold" FontFamily="PoppinsBold"
Margin="0,0,0,20"
TextColor="{StaticResource TextColorSecondary}"/> TextColor="{StaticResource TextColorSecondary}"/>
<Border <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 <Entry
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
IsPassword="True" Grid.Column="2"
Placeholder="Type your new password here"/> Placeholder="Old Password"/>
</Grid>
</Border> </Border>
</Grid> </Grid>

Loading…
Cancel
Save