38 lines
2.1 KiB
XML
38 lines
2.1 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="MobileAPP.MainPage">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="100"/>
|
|
<RowDefinition Height="450"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<StackLayout>
|
|
<Label
|
|
Text="Привет!"
|
|
Style="{StaticResource Headline}" TextColor="Black" FontSize="32"/>
|
|
<Label
|
|
Text="Заолните Свои Данные Или Продолжие Через Социальные Медиа"
|
|
Style="{StaticResource SubHeadline}" TextColor="#707B81" FontSize="16"/>
|
|
</StackLayout>
|
|
<StackLayout Grid.Row="1">
|
|
<Label Text="Email" Margin="20" FontSize="16"/>
|
|
<Frame CornerRadius="30" BackgroundColor="#F7F7F9" Padding="5" BorderColor="Transparent">
|
|
<Entry Placeholder="xyz@gmail.com" TextColor="#D8D8D8" Background="Transparent" HorizontalOptions="FillAndExpand" VerticalOptions="CenterAndExpand" />
|
|
</Frame>
|
|
<Label Text="Пароль" Margin="20" FontSize="16"/>
|
|
<Frame CornerRadius="30" BackgroundColor="#F7F7F9" Padding="5" BorderColor="Transparent">
|
|
<Entry Placeholder="*******" TextColor="#D8D8D8" Background ="Transparent" HorizontalOptions="FillAndExpand" VerticalOptions="CenterAndExpand" />
|
|
</Frame>
|
|
<Button Text="Восстановить" Background="Transparent" TextColor="#D8D8D8" HorizontalOptions="End"/>
|
|
<Button Text="Войти" BackgroundColor="#48B2E7" Margin="10"/>
|
|
</StackLayout>
|
|
<HorizontalStackLayout Grid.Row="2" VerticalOptions="Center" HorizontalOptions="Center">
|
|
<Label FontSize="12" Text="Вы Впервые?" TextColor="#707B81" Margin="5"/>
|
|
<Button FontSize="12" BackgroundColor="Transparent" Text=" Создать Пользователя" TextColor="Black" Margin="-10"/>
|
|
</HorizontalStackLayout>
|
|
</Grid>
|
|
|
|
</ContentPage> |