26 lines
865 B
XML
26 lines
865 B
XML
<?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="HegreHotel.MainPage"
|
|
Title="HegreHotel">
|
|
<StackLayout Padding="20" VerticalOptions="Center">
|
|
<Label Text="Bienvenue à HegreHotel"
|
|
FontSize="24"
|
|
HorizontalOptions="Center"
|
|
Margin="0,20"/>
|
|
|
|
<Button Text="Gérer les Clients"
|
|
Clicked="OnClientsClicked"
|
|
Margin="0,10"/>
|
|
|
|
<Button Text="Gérer les Chambres"
|
|
Clicked="OnChambresClicked"
|
|
Margin="0,10"/>
|
|
|
|
<Button Text="Gérer les Réservations"
|
|
Clicked="OnReservationsClicked"
|
|
Margin="0,10"/>
|
|
</StackLayout>
|
|
</ContentPage>
|