summaryrefslogtreecommitdiff
path: root/windows/WinUI/OnboardProcess/RegisterOrLogIn.xaml
diff options
context:
space:
mode:
authorGrant Limberg <grant.limberg@zerotier.com>2019-02-05 11:47:37 -0800
committerGrant Limberg <grant.limberg@zerotier.com>2019-02-05 11:47:37 -0800
commita4b19173618756e1d0cee3339e6cde734d13abb7 (patch)
tree37d6ddc5f231d849bf31b31a3993be89bb5c7fd2 /windows/WinUI/OnboardProcess/RegisterOrLogIn.xaml
parent5b1ef2fb03feade376663862950ef9655d338bae (diff)
downloadinfinitytier-a4b19173618756e1d0cee3339e6cde734d13abb7.tar.gz
infinitytier-a4b19173618756e1d0cee3339e6cde734d13abb7.zip
Fixed a bug where UI elements were attempting to be updated in a background thread.
Also code cleanup & removed confusing startup UI
Diffstat (limited to 'windows/WinUI/OnboardProcess/RegisterOrLogIn.xaml')
-rw-r--r--windows/WinUI/OnboardProcess/RegisterOrLogIn.xaml27
1 files changed, 0 insertions, 27 deletions
diff --git a/windows/WinUI/OnboardProcess/RegisterOrLogIn.xaml b/windows/WinUI/OnboardProcess/RegisterOrLogIn.xaml
deleted file mode 100644
index 01f3ba9d..00000000
--- a/windows/WinUI/OnboardProcess/RegisterOrLogIn.xaml
+++ /dev/null
@@ -1,27 +0,0 @@
-<UserControl x:Class="WinUI.OnboardProcess.RegisterOrLogIn"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:WinUI.OnboardProcess"
- mc:Ignorable="d"
- d:DesignHeight="300" d:DesignWidth="300">
- <StackPanel>
- <TextBlock HorizontalAlignment="Center" FontSize="20" FontWeight="Bold" FontFamily="Segoe UI">Welcome to ZeroTier</TextBlock>
- <TextBlock HorizontalAlignment="Center" FontSize="16">Let's get started!</TextBlock>
- <TextBlock HorizontalAlignment="Center"> </TextBlock>
- <TextBlock HorizontalAlignment="Center" TextWrapping="Wrap">If you haven't yet created an account, click "Create Account" below. If you have an account, you can log in with your username/password, or simply enter an API key.</TextBlock>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
- <StackPanel.Resources>
- <Style TargetType="{x:Type Button}">
- <Setter Property="Margin" Value="10,10,0,0"/>
- </Style>
- </StackPanel.Resources>
- <Button x:Name="CreateAccountButton" Margin="10,5" Content="Create Account" Background="#FFFFB354" Click="CreateAccountButton_Click"/>
-
- <Button x:Name="LogInButton" Margin="10,5" Content="Log In" Background="#FFFFB354" Click="LogInButton_Click"/>
-
- <Button x:Name="TokenButton" Margin="10,5" Content="API Token" Background="#FFFFB354" Click="APIToken_Click"/>
- </StackPanel>
- </StackPanel>
-</UserControl>