-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OnboardingPage.xaml
26 lines (25 loc) · 2.21 KB
/
OnboardingPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Page
x:Class="PassDefend.OnboardingPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="#FF165D43">
<ScrollViewer>
<Grid Grid.Row="3" Grid.RowSpan="3">
<Grid.RowDefinitions>
<RowDefinition Height="30" MaxHeight="30" MinHeight="30" />
<RowDefinition Height="75" MinHeight="75" MaxHeight="75" />
<RowDefinition Height="25" MaxHeight="25" MinHeight="25" />
<RowDefinition Height="*" />
<RowDefinition Height="0.25*" />
<RowDefinition Height="30" MaxHeight="30" MinHeight="30" />
</Grid.RowDefinitions>
<TextBlock x:Name="welcomeText" TextWrapping="Wrap" FontSize="36" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="0" Grid.Row="1" Text="Welcome to PassDefend" />
<TextBlock x:Name="versionText" TextWrapping="Wrap" FontSize="20" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="0" Grid.Row="2" Text="Version <version>" />
<TextBlock x:Name="programDescriptionText" TextWrapping="Wrap" FontSize="20" HorizontalAlignment="Center" VerticalAlignment="Center" TextAlignment="Center" Grid.Column="0" Grid.Row="3" Text="PassDefend is a password manager that keeps all your accounts securely encrypted locally on your device, not in a companies data center like other password managers, where you have no control over how and where your data is stored.

PassDefend can also securely check your passwords against reported breaches online and alert you when a password has been breached.

It can even help you create secure, randomized passwords to keep your online accounts safe." Padding="40,40,40,40"/>
<Button x:Name="getStartedButton" ToolTipService.ToolTip="Lets start!" Content="Get started" HorizontalAlignment="Center" Grid.Column="0" Grid.Row="4" Width="150" Height="64" Click="getStartedButton_Click" />
</Grid>
</ScrollViewer>
</Page>