Browse Source

--kiririr

СазоноваАА 9 months ago
parent
commit
771fb6e501
2 changed files with 48 additions and 8 deletions
  1. 2 1
      Practikaoy/Views/AuthPas.axaml
  2. 46 7
      Practikaoy/Views/MeRoom.axaml

+ 2 - 1
Practikaoy/Views/AuthPas.axaml

@@ -6,6 +6,7 @@
 			  x:DataType="vm:MainWindowViewModel"
              mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
              x:Class="Practikaoy.Views.AuthPas">
+	<Grid>
 	<Border BorderBrush="#ff686b" CornerRadius="40" Width="300" Height="230" BorderThickness="6" Background="#ffa69e">
 		<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Background="#ffa69e" Width="280" Height="150" >
 		<TextBlock />
@@ -16,5 +17,5 @@
 		<Button Content="Вход" Padding="5" Margin="6" HorizontalAlignment="Center" Background="#ff6368"/>
 	</StackPanel>
 	</Border>
-	
+	</Grid>
 </UserControl>

+ 46 - 7
Practikaoy/Views/MeRoom.axaml

@@ -4,11 +4,50 @@
              xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
              mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
              x:Class="Practikaoy.Views.MeRoom">
-	<StackPanel>
-		
-		<TextBlock Text="696690">
-		</TextBlock>
-	</StackPanel>
-	
-	
+	<Grid>
+		<TextBlock Foreground="#592321" FontSize="18" Margin="4" HorizontalAlignment="Center">Добро пожаловать в личный кабинет :)</TextBlock>
+		<Border Background="#ffa69e" Height="390" Width="650" CornerRadius="15">
+			<StackPanel  Margin="15">
+				
+				<TextBlock Text="Фамилия" FontSize="18" >
+				</TextBlock>
+				<TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="20"  HorizontalAlignment="Left"  BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
+				
+				<TextBlock Text="Имя" FontSize="18" >
+				</TextBlock>
+				<TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="20"  BorderBrush="#ff686b" BorderThickness="2" Height="10" Margin="2 -69 9 6"/>
+				
+				<TextBlock Text="Отчество" FontSize="18" >
+				</TextBlock>
+				<TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="20"  HorizontalAlignment="Right"  BorderBrush="#ff686b" BorderThickness="2" Height="10" Margin="3 -112 9 6"/>
+				
+				<TextBlock Text="Логин" FontSize="18">
+				</TextBlock>
+				<TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="20"  HorizontalAlignment="Left"  BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
+				
+				<TextBlock Text="Пол" FontSize="18">
+				</TextBlock>
+				<TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="20"  HorizontalAlignment="Left"  BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
+				
+				<TextBlock Text="Дата рождения" FontSize="18">
+				</TextBlock>
+				<TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="20"  HorizontalAlignment="Left"  BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
+				
+				<TextBlock Text="Стаж (в годах)" FontSize="18">
+				</TextBlock>
+				<TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="20"  HorizontalAlignment="Left"  BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
+				
+				<TextBlock Text="Почта" FontSize="18">
+				</TextBlock>
+				<TextBox Background="#fae1dd" Width="200" FontSize="15" CornerRadius="20"  HorizontalAlignment="Left"  BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
+				
+				<TextBlock Text="Телефон (если телефон отсутствует, то поле не заполняйте!!)" FontSize="18">
+				</TextBlock>
+
+			</StackPanel>
+		</Border>
+
+	</Grid>
+
+
 </UserControl>