-
Notifications
You must be signed in to change notification settings - Fork 0
/
PasswordTokenDialog.xaml
27 lines (25 loc) · 1.34 KB
/
PasswordTokenDialog.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
27
<ContentDialog
x:Name="passwordtoken_contentdialog"
x:Class="ReviewR.PasswordTokenDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ReviewR"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="Password Reset"
PrimaryButtonText="Return to Login"
SecondaryButtonText="Resend Token"
CloseButtonText="Next"
PrimaryButtonClick="ContentDialog_PrimaryButtonClick"
SecondaryButtonClick="ContentDialog_SecondaryButtonClick"
CloseButtonClick="ContentDialog_CloseButtonClick">
<Grid>
<RichTextBlock x:Name="requirement_description" HorizontalAlignment="Center" TextWrapping="Wrap" VerticalAlignment="Top" Height="63" Width="472">
<Paragraph Margin="2,0,0,0">
An email has been sent to the previously provided email. Please check all of your folders, incase the email is relayed to spam. The token will consists of an random 8-digit number.
</Paragraph>
</RichTextBlock>
<TextBox x:Name="enter_token" HorizontalAlignment="Center" VerticalAlignment="Top" Width="472" PlaceholderText="Enter the token..." Margin="0,72,0,0"/>
</Grid>
</ContentDialog>