MFACodeGenerator/MFACodeGenerator.MAUI/MainPage.xaml

31 lines
971 B
XML

<?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:Class="MFACodeGenerator.MAUI.MainPage">
<ScrollView>
<VerticalStackLayout
Spacing="25"
Padding="30,0"
VerticalOptions="Center">
<Label Text="Enter MFA Secret Below">
</Label>
<Entry x:Name="InputBox" IsPassword="True" />
<Label
x:Name="MFACodeOutput"
Text=""
HorizontalOptions="Center" />
<Button
x:Name="CounterBtn"
Text="Generate Code"
SemanticProperties.Hint="Generates MFA Code based on secret"
Clicked="OnGenerateMFACode"
HorizontalOptions="Center" />
</VerticalStackLayout>
</ScrollView>
</ContentPage>