Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

46 lines
2.0KB

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="MaUI.AuthLogin"
  5. Title="Login">
  6. <ScrollView>
  7. <StackLayout Padding="10" Spacing="10">
  8. <!-- LOGIN -->
  9. <Grid ColumnDefinitions="150, *" Padding="0,5">
  10. <Label Text="Login* :" FontAttributes="Bold" VerticalOptions="Center" Grid.Row="0" Grid.Column="0"/>
  11. <Entry Text="{Binding SelectedItem.Username, Mode=TwoWay}" Placeholder="Saisissez votre login" Grid.Row="0" Grid.Column="1"/>
  12. </Grid>
  13. <!-- PASSWORD -->
  14. <Grid ColumnDefinitions="150, *" Padding="0,5">
  15. <Label Text="Password* :" FontAttributes="Bold" VerticalOptions="Center" Grid.Row="1" Grid.Column="0"/>
  16. <Entry x:Name="PasswordEntry" Text="{Binding SelectedItem.Password, Mode=TwoWay}" IsPassword="True" Placeholder="Saisissez votre mot de passe" Grid.Row="1" Grid.Column="1"/>
  17. </Grid>
  18. <Grid ColumnDefinitions="200, 200" Padding="0,5">
  19. <Button Text="Annuler"
  20. Command="{Binding AnnulerCommand}"
  21. BackgroundColor="Gray"
  22. TextColor="White"
  23. CornerRadius="10"
  24. HeightRequest="50"
  25. WidthRequest="120"
  26. Grid.Row="6" Grid.Column="0"
  27. Margin="0,0,0,0"/>
  28. <Button Text="Valider"
  29. Command="{Binding ValiderCommand}"
  30. BackgroundColor="Green"
  31. TextColor="White"
  32. CornerRadius="10"
  33. HeightRequest="50"
  34. WidthRequest="120"
  35. Grid.Row="6" Grid.Column="1"
  36. Margin="0,0,0,0"/>
  37. </Grid>
  38. </StackLayout>
  39. </ScrollView>
  40. </ContentPage>