84 lines
3.5 KiB
XML
84 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="MyMobileApp.SignIn">
|
|
<ContentPage.Content>
|
|
<StackLayout>
|
|
<Label Text="Привет!"
|
|
Margin="0,100,0,0"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="CenterAndExpand"
|
|
FontSize="30"
|
|
TextColor="Black"/>
|
|
<Label Text=" Заполните Свои данные или продолжите через социальные медиа"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="CenterAndExpand"
|
|
FontSize="20"
|
|
TextColor="Gray"/>
|
|
<Grid>
|
|
<Label Text="Email"
|
|
Margin="20,10,0,0"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="Start"
|
|
FontSize="20"
|
|
TextColor="Black" />
|
|
<Frame BackgroundColor="#f3f4f5"
|
|
CornerRadius="25"
|
|
Margin="20,50,20,0">
|
|
<Label Text="xyz@gmail.com"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="Start"
|
|
FontSize="20"
|
|
TextColor="Gray" />
|
|
</Frame>
|
|
</Grid>
|
|
<Grid>
|
|
<Label Text="Пароль"
|
|
Margin="20,10,0,0"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="Start"
|
|
FontSize="20"
|
|
TextColor="Black" />
|
|
<Frame BackgroundColor="#f3f4f5"
|
|
CornerRadius="25"
|
|
Margin="20,50,20,0">
|
|
<Label Text="**********"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="Start"
|
|
FontSize="20"
|
|
TextColor="Gray" />
|
|
</Frame>
|
|
</Grid>
|
|
<Label Text="Восстановить"
|
|
Margin="20,10,20,0"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="End"
|
|
FontSize="15"
|
|
TextColor="Gray" />
|
|
<Button Text="Войти"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Start"
|
|
Margin="21,20,0,0"
|
|
FontSize="18"
|
|
TextTransform="None"
|
|
CornerRadius="15"
|
|
WidthRequest="350"
|
|
BackgroundColor="#48B2E7"
|
|
Clicked="Button_Clicked"/>
|
|
<Grid>
|
|
<Label Text="Вы впервые?"
|
|
Margin="0,190,230,0"
|
|
VerticalOptions="End"
|
|
HorizontalOptions="End"
|
|
FontSize="18"
|
|
TextColor="Gray" />
|
|
<Label Text="Создать пользователя"
|
|
Margin="0,190,30,0"
|
|
VerticalOptions="End"
|
|
HorizontalOptions="End"
|
|
FontSize="18"
|
|
TextColor="Black" />
|
|
</Grid>
|
|
</StackLayout>
|
|
</ContentPage.Content>
|
|
</ContentPage> |