|
|
|
@ -3,6 +3,7 @@
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
x:Class="Stim.LoginPage"
|
|
|
|
|
Title="LoginPage">
|
|
|
|
|
<ScrollView>
|
|
|
|
|
<Grid BackgroundColor="{StaticResource Tertiary}" ColumnDefinitions="*, 5*, *" RowDefinitions="auto, *">
|
|
|
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="0"/>
|
|
|
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="2"/>
|
|
|
|
@ -15,13 +16,15 @@
|
|
|
|
|
IsPassword="False"
|
|
|
|
|
x:Name="Username"
|
|
|
|
|
HeightRequest="50"
|
|
|
|
|
ClearButtonVisibility="WhileEditing"/>
|
|
|
|
|
ClearButtonVisibility="WhileEditing"
|
|
|
|
|
Text="anthony"/>
|
|
|
|
|
<Entry Placeholder="Mot de passe"
|
|
|
|
|
PlaceholderColor="{StaticResource Primary}"
|
|
|
|
|
IsPassword="True" x:Name="Pswd"
|
|
|
|
|
HeightRequest="50"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
ClearButtonVisibility="WhileEditing"/>
|
|
|
|
|
ClearButtonVisibility="WhileEditing"
|
|
|
|
|
Text="anthony5"/>
|
|
|
|
|
|
|
|
|
|
<Grid Grid.Row="2"
|
|
|
|
|
Margin="10,0,0,10" ColumnDefinitions="3*, *">
|
|
|
|
@ -40,4 +43,5 @@
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</ContentPage>
|