Authorization.xaml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Page x:Class="SneakersSkakunov.Authorization"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:SneakersSkakunov"
  7. mc:Ignorable="d"
  8. d:DesignHeight="720" d:DesignWidth="1080"
  9. Title="Authorization">
  10. <Grid Background="#f5f5f5">
  11. <StackPanel HorizontalAlignment="Left" VerticalAlignment="Center" >
  12. <Rectangle Fill=" #dbdbdb" RadiusX="15" RadiusY="15" Margin="100" Height="500" Width="650"/>
  13. </StackPanel>
  14. <StackPanel Orientation="Vertical" HorizontalAlignment="Left" Margin=" 150" VerticalAlignment="Center" >
  15. <TextBlock FontWeight="DemiBold" Foreground="#292929" FontSize="40" HorizontalAlignment="Left" Width="245" Height="55"><Run Text="Авторизация"/></TextBlock>
  16. </StackPanel>
  17. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,240,0">
  18. <Rectangle Fill="#292929" Height="320" Width="2" />
  19. </StackPanel>
  20. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="30,0,0,0">
  21. <TextBlock FontWeight="DemiBold" Foreground="#292929" FontSize="15"><Run Text="Логин"/></TextBlock>
  22. <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" x:Name="Login" Background="#f5f5f5" ></TextBox>
  23. <TextBlock FontWeight="DemiBold" Foreground="#292929" FontSize="15"><Run Text="Пароль"/></TextBlock>
  24. <PasswordBox BorderThickness="2" Height="25" BorderBrush="#292929" x:Name="Pass" Background="#f5f5f5" />
  25. <Border BorderThickness="2" CornerRadius="4" BorderBrush="#292929" Background="#f5f5f5" Height="28" Margin="0,20,0,0">
  26. <Button Click="Enter_Click" Background="#0000" BorderBrush="#0000" Foreground="#292929" Content="Войти" FontWeight="Bold" FontSize="16" />
  27. </Border>
  28. <Button Click="GoReg_Click" Background="#0000" BorderBrush="#0000" FontSize="13" Margin="0,5,0,0">
  29. <TextBlock Foreground="#757575"><Run Text="Зарегистрируйтесь, если нет аккаунта!"/></TextBlock>
  30. </Button>
  31. </StackPanel>
  32. </Grid>
  33. </Page>