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.
59 lines
2.1 KiB
59 lines
2.1 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="Views.Login"
|
|
xmlns:local="clr-namespace:Views"
|
|
Title="Login"
|
|
x:Name="nlogin">
|
|
<VerticalStackLayout>
|
|
<local:MiniHeader
|
|
TitleMini="Connection"
|
|
NeedReturn="True"
|
|
HeightRequest="100"/>
|
|
|
|
<Grid ColumnDefinitions="350,*,350">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Column="1"
|
|
Grid.Row="0"
|
|
Text="Login :"
|
|
FontAttributes="Bold"
|
|
FontSize="Medium"
|
|
Padding="0,50,0,10"
|
|
MinimumWidthRequest="200"/>
|
|
<Entry Grid.Column="1"
|
|
Grid.Row="1"
|
|
BackgroundColor="#D1E8E2"
|
|
Margin="0,0,0,20"/>
|
|
<Label Grid.Column="1"
|
|
Grid.Row="2"
|
|
Text="Mot de passe :"
|
|
FontAttributes="Bold"
|
|
FontSize="Medium"
|
|
Padding="0,50,0,10"
|
|
MinimumWidthRequest="200"/>
|
|
<Entry Grid.Column="1"
|
|
Grid.Row="3"
|
|
BackgroundColor="#D1E8E2"
|
|
Margin="0,0,0,50"/>
|
|
<CheckBox Grid.Column="1"
|
|
Grid.Row="4"/>
|
|
<Label Grid.Column="1"
|
|
Grid.Row="4"
|
|
Text="première connection"
|
|
Margin="50,0,0,0"
|
|
FontAttributes="Italic"/>
|
|
<Button BackgroundColor="#D1E8E2"
|
|
Grid.Column="1"
|
|
Grid.Row="5"/>
|
|
|
|
</Grid>
|
|
|
|
</VerticalStackLayout>
|
|
</ContentPage> |