59 lines
2.1 KiB
Plaintext
59 lines
2.1 KiB
Plaintext
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<UserControl
|
||
|
x:Class="RustTools.Themes.RediscoverPassGrid"
|
||
|
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:local="using:RustTools.Themes"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d">
|
||
|
|
||
|
|
||
|
<Grid>
|
||
|
|
||
|
|
||
|
|
||
|
<StackPanel>
|
||
|
<local:ButtonIcon x:Name="BackButton" Glyph="" />
|
||
|
<TextBlock HorizontalAlignment="Center" Text="找回密码" />
|
||
|
<StackPanel>
|
||
|
<TextBox
|
||
|
Name="accountBox"
|
||
|
Margin="0,16,0,16"
|
||
|
InputScope="AlphanumericPin"
|
||
|
PlaceholderText="账号" />
|
||
|
<PasswordBox
|
||
|
Name="passwordBox"
|
||
|
Margin="0,0,0,16"
|
||
|
PlaceholderText="密码" />
|
||
|
<PasswordBox
|
||
|
Name="passwordyesBox"
|
||
|
Margin="0,0,0,16"
|
||
|
PlaceholderText="确认密码" />
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<TextBox
|
||
|
Name="codeBox"
|
||
|
MinWidth="260"
|
||
|
Margin="0,0,0,16"
|
||
|
VerticalAlignment="Center"
|
||
|
MaxLength="6"
|
||
|
PlaceholderText="邮箱验证码" />
|
||
|
<local:ButtonIcon
|
||
|
Margin="6,0,0,16"
|
||
|
VerticalAlignment="Center"
|
||
|
Click="ButtonIcon_Click"
|
||
|
Glyph=""
|
||
|
ToolTipService.ToolTip="发送" />
|
||
|
</StackPanel>
|
||
|
</StackPanel>
|
||
|
<Button
|
||
|
x:Name="redisButton"
|
||
|
Margin="0,0,0,0"
|
||
|
Click="Button_Click"
|
||
|
Content="找回密码"
|
||
|
IsEnabled="False" />
|
||
|
</StackPanel>
|
||
|
<TeachingTip Name="Toast" CloseButtonContent="关闭" />
|
||
|
</Grid>
|
||
|
</UserControl>
|