82 lines
2.3 KiB
XML
82 lines
2.3 KiB
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="CarPark.LoginScreen">
|
||
|
||
<Grid
|
||
BackgroundColor="#02489E">
|
||
|
||
<Label
|
||
Grid.Row="0"
|
||
HorizontalOptions="Center"
|
||
TextColor="White"
|
||
Text="CarPass"
|
||
FontSize="32"
|
||
FontAttributes="Bold"
|
||
Margin="0,200,0,0"/>
|
||
|
||
<VerticalStackLayout
|
||
Grid.Row="1"
|
||
HorizontalOptions="Fill"
|
||
Padding="30,0"
|
||
VerticalOptions="Center">
|
||
|
||
<Label
|
||
TextColor="White"
|
||
Text="Вход"
|
||
FontFamily="Bold"
|
||
FontSize="30"
|
||
HorizontalOptions="Center"
|
||
Margin="0,0,0,30"/>
|
||
|
||
<VerticalStackLayout Spacing="10">
|
||
<Button
|
||
Text="Гость"
|
||
BackgroundColor="#EEECEC"
|
||
TextColor="Blue"
|
||
FontSize="30"
|
||
FontAttributes="Bold"
|
||
WidthRequest="250"
|
||
Clicked="OnVKClicked"
|
||
HorizontalOptions="Center" />
|
||
|
||
<Button
|
||
Text="ЕСИA"
|
||
BackgroundColor="#EEECEC"
|
||
TextColor="Red"
|
||
FontSize="30"
|
||
FontAttributes="Bold"
|
||
WidthRequest="250"
|
||
Clicked="OnGosUslugiClicked"
|
||
HorizontalOptions="Center" />
|
||
|
||
|
||
</VerticalStackLayout>
|
||
|
||
</VerticalStackLayout>
|
||
|
||
|
||
<Grid WidthRequest="300" VerticalOptions="End" Grid.Row="2">
|
||
<Button
|
||
|
||
Margin="20"
|
||
Text="Карта зарядок"
|
||
BackgroundColor="#EEECEC"
|
||
TextColor="Black"
|
||
FontSize="25"
|
||
WidthRequest="300"
|
||
|
||
Clicked="OnMapClicked"
|
||
HorizontalOptions="Center" />
|
||
<Image Grid.Row="0"
|
||
Source="lightning.svg"
|
||
HorizontalOptions="Start"
|
||
HeightRequest="40"
|
||
WidthRequest="40"
|
||
Margin="10,0"/>
|
||
|
||
</Grid>
|
||
|
||
</Grid>
|
||
</ContentPage>
|