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.
47 lines
1.6 KiB
47 lines
1.6 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:Class="YOUserbase.FAQPage"
|
|
Title="FAQ">
|
|
<VerticalStackLayout
|
|
Padding="30,60">
|
|
<Label
|
|
Text="Q: How do I add a new user?"
|
|
FontSize="Large"
|
|
Padding="0,0,0,20" />
|
|
<Label
|
|
Text="A: Go To the `User Overview` Tab and click the `New user` button."
|
|
FontSize="Medium"
|
|
Padding="0,0,0,40" />
|
|
|
|
<Label
|
|
Text="Q: How do I delete an existing user?"
|
|
FontSize="Large"
|
|
Padding="0,0,0,20" />
|
|
<Label
|
|
Text="A: Go To the `User Overview` Tab and click the `Delete` button on the user you want to delete."
|
|
FontSize="Medium"
|
|
Padding="0,0,0,40" />
|
|
|
|
<Label
|
|
Text="Q: How do I add a new group?"
|
|
FontSize="Large"
|
|
Padding="0,0,0,20" />
|
|
<Label
|
|
Text="A: Go To the `Group Overview` Tab and click the `New group` button."
|
|
FontSize="Medium"
|
|
Padding="0,0,0,40" />
|
|
|
|
<Label
|
|
Text="Q: How do I delete an existing group?"
|
|
FontSize="Large"
|
|
Padding="0,0,0,20" />
|
|
<Label
|
|
Text="A: Go To the `Group Overview` Tab and click the `Delete` button on the group you want to delete."
|
|
FontSize="Medium"
|
|
Padding="0,0,0,40" />
|
|
</VerticalStackLayout>
|
|
</ContentPage>
|