|
|
|
@ -50,9 +50,7 @@
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
Stroke="{StaticResource BackgroundPrimary}"
|
|
|
|
|
BackgroundColor="{StaticResource BackgroundSecondary}">
|
|
|
|
|
<ImageButton
|
|
|
|
|
Grid.Row="0"
|
|
|
|
|
Source="default_profile_picture.png"/>
|
|
|
|
|
<ImageButton x:Name="ProfilePicture"/>
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
@ -60,7 +58,7 @@
|
|
|
|
|
FontSize="30"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
TextColor="{StaticResource TextColorPrimary}"
|
|
|
|
|
Text="%Profile_Name%"
|
|
|
|
|
Text="{Binding Account.User.Name}"
|
|
|
|
|
FontFamily="PoppinsBold"/>
|
|
|
|
|
<Label
|
|
|
|
|
Grid.Row="2"
|
|
|
|
@ -88,7 +86,7 @@
|
|
|
|
|
Style="{StaticResource SecondaryBorderShadow}">
|
|
|
|
|
<Entry
|
|
|
|
|
Style="{StaticResource UserInput}"
|
|
|
|
|
Text="%Profile_Name%"
|
|
|
|
|
Text="{Binding User.Name}"
|
|
|
|
|
Placeholder="Place your name here"/>
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
@ -103,7 +101,7 @@
|
|
|
|
|
Style="{StaticResource SecondaryBorderShadow}">
|
|
|
|
|
<Entry
|
|
|
|
|
Style="{StaticResource UserInput}"
|
|
|
|
|
Text="%Profile_Mail%"
|
|
|
|
|
Text="{Binding Email}"
|
|
|
|
|
Placeholder="Place your email address here"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border
|
|
|
|
@ -118,9 +116,6 @@
|
|
|
|
|
Text="Change My Password"
|
|
|
|
|
Clicked="ChangeMyPasswordClicked"/>
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|