Compare commits

...

3 Commits
master ... MAUI

Author SHA1 Message Date
Raphael LACOTE 229731409a Ajout de 2 styles
continuous-integration/drone/push Build is passing Details
2 years ago
Hugo LIVET a076b7bbd9 Mise à jour de '.drone.yml'
continuous-integration/drone/push Build is passing Details
2 years ago
Hugo LIVET 74894fff37 Mise à jour de '.drone.yml'
continuous-integration/drone/push Build is failing Details
2 years ago

@ -28,7 +28,7 @@ steps:
- cd Sources/
- dotnet workload restore
- dotnet restore CI_MAUI.sln
- dotnet sonarscanner begin /k:ConsEcoMAUI /d:sonar.host.url=$${PLUGIN_SONAR_HOST} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions="Tests/**" /d:sonar.login=$${PLUGIN_SONAR_TOKEN}
- dotnet sonarscanner begin /k:ConsEco /d:sonar.host.url=$${PLUGIN_SONAR_HOST} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions="Tests/**" /d:sonar.login=$${PLUGIN_SONAR_TOKEN}
- dotnet build CI_MAUI.sln -c Release --no-restore
- dotnet test CI_MAUI.sln --logger trx --no-restore /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura --collect "XPlat Code Coverage"
- reportgenerator -reports:"**/coverage.cobertura.xml" -reporttypes:SonarQube -targetdir:"coveragereport"
@ -50,5 +50,4 @@ steps:
CONTAINERNAME: mysql
COMMAND: create
PRIVATE: true
POSTGRES_PASSWORD: oui
POSTGRES_PASSWORD: oui

@ -4,6 +4,17 @@
xmlns:local="clr-namespace:IHM"
x:Class="IHM.App">
<Application.Resources>
<Style TargetType="Border" x:Key="Rectangle">
<Setter Property="BackgroundColor" Value="Black"/>
<Setter Property="Padding" Value="7"/>
<Setter Property="StrokeShape" Value="RoundRectangle 40"/>
</Style>
<Style TargetType="Entry" x:Key="ZoneTaper">
<Setter Property="BackgroundColor" Value="White"/>
<Setter Property="TextColor" Value="Black"/>
<Setter Property="VerticalTextAlignment" Value="Center"/>
<Setter Property="FontSize" Value="15"/>
</Style>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />

@ -17,27 +17,20 @@
<Image Source="Resources/Images/logo_sans_fond.png"
HorizontalOptions="Center"
Scale="0.5"/>
<Border StrokeShape="RoundRectangle 40" BackgroundColor="White" Padding="7">
<Entry BackgroundColor="White"
TextColor="Black"
VerticalTextAlignment="Center"
FontSize="15"
<Border Style="{StaticResource Rectangle}">
<Entry Style="{StaticResource ZoneTaper}"
Placeholder="Addresse mail"
x:Name="EntryMail"/>
</Border>
<Border StrokeShape="RoundRectangle 40" BackgroundColor="White" Padding="7">
<Entry BackgroundColor="White"
TextColor="Black"
VerticalTextAlignment="Center"
FontSize="15"
<Border Style="{StaticResource Rectangle}">
<Entry Style="{StaticResource ZoneTaper}"
Placeholder="Mot de passe"
IsPassword="True"
x:Name="EntryPassworld"/>
</Border>
<Button
x:Name="ConnexionButton"
Text="Se connecter"

Loading…
Cancel
Save