You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

56 lines
2.4 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<ContentPage
x:Class="CircleViewerMaui.UserGroups"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://schemas.microsoft.com/dotnet/2021/maui/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:CircleViewerMaui"
mc:Ignorable="d">
<ContentPage.Content>
<Grid Margin="20,20,20,20">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<VerticalStackLayout Grid.Row="0" Grid.Column="0" Padding="10" Margin="10" BackgroundColor="Cornsilk">
<Label
Text="Join User Group"
BackgroundColor="Purple"
TextColor="White"
VerticalOptions="Center"
HorizontalOptions="Fill"
HorizontalTextAlignment="Center"/>
<Label
Text="Request code:"
TextColor="Purple"
VerticalOptions="Center"/>
<Entry x:Name="RequestCode" Placeholder="1234"></Entry>
<Label
Text="Verification code:"
TextColor="Purple"
VerticalOptions="Center"/>
<Entry x:Name="VerificationCode" Placeholder="ABCD"></Entry>
<Button x:Name="bnRequestVerfication" Text="Request Verification" Clicked="BnRequestVerfication_OnClicked"/>
</VerticalStackLayout>
<VerticalStackLayout Grid.Row="0" Grid.Column="1" Padding="10" Margin="10" BackgroundColor="Cornsilk">
<Label
Text="User Groups"
BackgroundColor="Purple"
TextColor="White"
VerticalOptions="Center"
HorizontalOptions="Fill"
HorizontalTextAlignment="Center"/>
<Picker x:Name="circlePicker" Title="Default User Group">
</Picker>
</VerticalStackLayout>
</Grid>
</ContentPage.Content>
</ContentPage>