|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
x:Class="Justice.Views.RegistrationPage"
|
|
|
|
Title="Register">
|
|
|
|
|
|
|
|
<StackLayout Padding="20">
|
|
|
|
<Label Text="Register as End User" FontSize="Large" HorizontalOptions="Center" />
|
|
|
|
|
|
|
|
<!-- Username -->
|
|
|
|
<Label Text="Username:" FontSize="Medium" />
|
|
|
|
<Entry x:Name="UsernameEntry" Placeholder="Enter your username" />
|
|
|
|
|
|
|
|
<!-- Password -->
|
|
|
|
<Label Text="Password:" FontSize="Medium" />
|
|
|
|
<Entry x:Name="PasswordEntry" Placeholder="Enter your password" IsPassword="True" />
|
|
|
|
|
|
|
|
<!-- Confirm Password -->
|
|
|
|
<Label Text="Confirm Password:" FontSize="Medium" />
|
|
|
|
<Entry x:Name="ConfirmPasswordEntry" Placeholder="Confirm your password" IsPassword="True" />
|
|
|
|
|
|
|
|
<!-- Identity Upload -->
|
|
|
|
<Label Text="Upload Identity Document:" FontSize="Medium" />
|
|
|
|
<Button Text="Choose File" Clicked="OnChooseFileClicked" />
|
|
|
|
<Label x:Name="IdentityFileLabel" Text="No file selected" FontSize="Small" TextColor="Gray" />
|
|
|
|
|
|
|
|
<!-- Register Button -->
|
|
|
|
<Button Text="Register" Clicked="OnRegisterClicked" />
|
|
|
|
|
|
|
|
<!-- Loader -->
|
|
|
|
<ActivityIndicator IsRunning="{Binding IsBusy}" IsVisible="{Binding IsBusy}" VerticalOptions="Center" />
|
|
|
|
</StackLayout>
|
|
|
|
</ContentPage>
|