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.
44 lines
1.3 KiB
44 lines
1.3 KiB
<?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:DataType="ContentPage"
|
|
x:Name="contentPage"
|
|
x:Class="YOUserbase.CreateGroupPage"
|
|
Title="Create a new group">
|
|
<ScrollView>
|
|
<VerticalStackLayout
|
|
Spacing="25"
|
|
Padding="300,60">
|
|
<Label
|
|
x:Name="lblName"
|
|
Text="Group name:" />
|
|
<Entry
|
|
x:Name="NameEntry"
|
|
HorizontalOptions="FillAndExpand" />
|
|
<Label
|
|
x:Name="errName"
|
|
TextColor="Red" />
|
|
|
|
<Label
|
|
x:Name="lblDetails"
|
|
Text="Group details:" />
|
|
<Entry
|
|
x:Name="DetailsEntry"
|
|
HorizontalOptions="FillAndExpand" />
|
|
<Label
|
|
x:Name="errDetails"
|
|
TextColor="Red" />
|
|
|
|
<Button
|
|
x:Name="btnCreate"
|
|
Text="Create"
|
|
Clicked="OnCreateClicked" />
|
|
<Label
|
|
x:Name="errAll"
|
|
TextColor="Red" />
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
|
|
</ContentPage>
|