You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
3.2 KiB
71 lines
3.2 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Stim.LoginPage"
|
|
Title="LoginPage">
|
|
<Grid BackgroundColor="{StaticResource Tertiary}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="5*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="0"/>
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="2"/>
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="0" Grid.Row="1"/>
|
|
<VerticalStackLayout BackgroundColor="Black" Grid.Column="2" Grid.Row="1"/>
|
|
<Grid Grid.Column="1">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="500"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Image Source="no_cover.png" HeightRequest="490" Margin="0,10,0,0"/>
|
|
<Grid Grid.Row="1">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Entry Text="Bel"
|
|
Placeholder="Username" PlaceholderColor="{StaticResource Primary}"
|
|
IsPassword="False"
|
|
x:Name="Username"
|
|
HeightRequest="50"
|
|
ClearButtonVisibility="WhileEditing"/>
|
|
<Entry Text="BelBel1*"
|
|
Placeholder="Mot de passe"
|
|
PlaceholderColor="{StaticResource Primary}"
|
|
IsPassword="True" x:Name="Pswd"
|
|
HeightRequest="50"
|
|
Grid.Row="1"
|
|
ClearButtonVisibility="WhileEditing"/>
|
|
|
|
<Grid Grid.Row="2"
|
|
Margin="10,0,0,10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Text="Se connecter"
|
|
Clicked="Se_connecter"
|
|
HeightRequest="50"
|
|
BackgroundColor="{StaticResource Gray500}"/>
|
|
<Button Text="Créer un compte"
|
|
Clicked="Creer_un_compte"
|
|
HeightRequest="50"
|
|
BackgroundColor="{StaticResource Gray500}"
|
|
Grid.Column="1"/>
|
|
</Grid>
|
|
</Grid>
|
|
<HorizontalStackLayout x:Name="Error" Grid.Row="2" HorizontalOptions="Center">
|
|
</HorizontalStackLayout>
|
|
</Grid>
|
|
</Grid>
|
|
</ContentPage> |