parent
4874e67e03
commit
e0be2a33a2
@ -1,12 +0,0 @@
|
|||||||
<?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="mastermind.Pages.NewPage1"
|
|
||||||
Title="NewPage1">
|
|
||||||
<VerticalStackLayout>
|
|
||||||
<Label
|
|
||||||
Text="Welcome to .NET MAUI!"
|
|
||||||
VerticalOptions="Center"
|
|
||||||
HorizontalOptions="Center" />
|
|
||||||
</VerticalStackLayout>
|
|
||||||
</ContentPage>
|
|
@ -1,9 +0,0 @@
|
|||||||
namespace mastermind.Pages;
|
|
||||||
|
|
||||||
public partial class NewPage1 : ContentPage
|
|
||||||
{
|
|
||||||
public NewPage1()
|
|
||||||
{
|
|
||||||
InitializeComponent();
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,52 @@
|
|||||||
|
<?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="mastermind.Pages.connexionPage"
|
||||||
|
Title="Connexion">
|
||||||
|
<VerticalStackLayout>
|
||||||
|
<Label
|
||||||
|
Text="JOUEURS"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
FontSize="Header"
|
||||||
|
Margin="0, 0, 0, 50"/>
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
Margin="0, 50"
|
||||||
|
ColumnDefinitions="auto, *, 8*, *"
|
||||||
|
RowDefinitions="auto">
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Text="Joueur 1"
|
||||||
|
FontSize="Large"
|
||||||
|
Margin="50, 0, 0, 0"
|
||||||
|
VerticalOptions="Center"
|
||||||
|
HorizontalOptions="Center"/>
|
||||||
|
<Entry
|
||||||
|
Grid.Column="2"
|
||||||
|
FontSize="Medium"
|
||||||
|
Margin="50, 0"/>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
Margin="0, 50"
|
||||||
|
ColumnDefinitions="auto, *, 8*, *"
|
||||||
|
RowDefinitions="auto">
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Text="Joueur 2"
|
||||||
|
FontSize="Large"
|
||||||
|
Margin="50, 0, 0, 0"
|
||||||
|
VerticalOptions="Center"
|
||||||
|
HorizontalOptions="Center"/>
|
||||||
|
|
||||||
|
<Entry
|
||||||
|
Grid.Column="2"
|
||||||
|
FontSize="Medium"
|
||||||
|
Margin="50, 0"/>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Se connecter"
|
||||||
|
Margin="200, 100, 200, 0"/>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ContentPage>
|
@ -0,0 +1,9 @@
|
|||||||
|
namespace mastermind.Pages;
|
||||||
|
|
||||||
|
public partial class connexionPage : ContentPage
|
||||||
|
{
|
||||||
|
public connexionPage()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue