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

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

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

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

Loading…
Cancel
Save