mask password fix in Login, Register, ChangePassword and ForgotPassword Pages (#41)
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details

pull/51/head
Leo TUAILLON 2 years ago
parent 90d4482ffe
commit ef1fdefef8

@ -60,7 +60,8 @@
<Entry <Entry
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
Grid.Column="2" Grid.Column="2"
Placeholder="Old Password"/> Placeholder="Old Password"
IsPassword="True"/>
</Grid> </Grid>
</Border> </Border>
@ -85,7 +86,8 @@
<Entry <Entry
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
Grid.Column="2" Grid.Column="2"
Placeholder="New Password"/> Placeholder="New Password"
IsPassword="True"/>
</Grid> </Grid>
</Border> </Border>
@ -111,7 +113,8 @@
<Entry <Entry
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
Grid.Column="2" Grid.Column="2"
Placeholder="New Password"/> Placeholder="New Password"
IsPassword="True"/>
</Grid> </Grid>
</Border> </Border>
</VerticalStackLayout> </VerticalStackLayout>

@ -131,7 +131,8 @@
Style="{StaticResource SecondaryBorderShadow}"> Style="{StaticResource SecondaryBorderShadow}">
<Entry <Entry
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
Placeholder="New password"/> Placeholder="New password"
IsPassword="True"/>
</Border> </Border>
<Label <Label
Grid.Row="5" Grid.Row="5"
@ -143,7 +144,8 @@
Style="{StaticResource SecondaryBorderShadow}"> Style="{StaticResource SecondaryBorderShadow}">
<Entry <Entry
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
Placeholder="New password"/> Placeholder="New password"
IsPassword="True"/>
</Border> </Border>
</Grid> </Grid>

@ -59,7 +59,8 @@
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
Grid.Column="2" Grid.Column="2"
Placeholder="Password" Placeholder="Password"
x:Name="PasswordEntry"/> x:Name="PasswordEntry"
IsPassword="True"/>
<ImageButton <ImageButton
Grid.Column="3" Grid.Column="3"
Source="visibility_off.svg" Source="visibility_off.svg"

@ -79,7 +79,8 @@
Style="{StaticResource UserInput}" Style="{StaticResource UserInput}"
Grid.Column="2" Grid.Column="2"
Placeholder="Password" Placeholder="Password"
x:Name="PasswordEntry"/> x:Name="PasswordEntry"
IsPassword="True"/>
<ImageButton <ImageButton
Grid.Column="3" Grid.Column="3"
Source="visibility_off.svg" Source="visibility_off.svg"

Loading…
Cancel
Save