blob: 0b11d97fe9138e698496e75c065559d8d8364835 [file] [log] [blame]
atraczyk61b28422016-08-24 09:25:59 -04001<Page
2 x:Class="RingClientUWP.Views.Wizard"
3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 xmlns:local="using:RingClientUWP"
6 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
7 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
8 mc:Ignorable="d">
9
10 <Grid>
11 <Grid.RowDefinitions>
12 <RowDefinition Height="32"/>
13 <RowDefinition Height="*"/>
14 </Grid.RowDefinitions>
15 <Rectangle Fill="LightBlue"
16 Grid.Row="0"/>
17 <StackPanel Grid.Row="1" Width="400">
18 <Rectangle Height="50"/>
19 <StackPanel Height="auto"
20 Background="LightBlue"
21 Grid.Column="0">
22 <TextBlock x:Name="_showCreateAccountMenuTitle_"
23 Text="Create New Account"
24 Foreground="White"
25 FontSize="30"
26 HorizontalAlignment="Center"/>
27 <Button x:Name="_showCreateAccountMenuBtn_"
28 Content="Create New Account"
29 Visibility="Collapsed"
30 HorizontalAlignment="Center"
31 Style="{StaticResource ButtonStyle4}"
32 Click="_showCreateAccountMenuBtn__Click"/>
33 <Grid x:Name="_accountCreationMenuGrid_"
34 Background="LightBlue"
35 Visibility="Visible">
36 <Grid.RowDefinitions>
37 <RowDefinition Height="auto"/>
38 <RowDefinition Height="30"/>
39 </Grid.RowDefinitions>
40 <StackPanel Orientation="Vertical"
41 Grid.Row="0"
42 Background="#FFE4F1F9">
43 <Button x:Name="_avatarWebcamCaptureBtn_"
44 Margin="0,10,0,0"
45 VerticalAlignment="Center"
46 Content="&#xE8B8;"
atraczyk2425ddd2016-09-01 13:16:22 -040047 Click="_avatarWebcamCaptureBtn__Click"
atraczyk61b28422016-08-24 09:25:59 -040048 Style="{StaticResource ButtonStyle3}"
49 HorizontalAlignment="Center"/>
50 <!-- RING account. -->
51 <StackPanel x:Name="_ringAccountCreationStack_"
52 Visibility="Visible">
53 <TextBox x:Name="_aliasTextBox_"
54 Margin="10"
55 PlaceholderText="Enter your username"/>
56 <PasswordBox Margin="10"
57 PlaceholderText="Enter your password"/>
58 <PasswordBox Margin="10,10,10,20"
59 PlaceholderText="Repeat your Password"/>
60 </StackPanel>
61 <!-- SIP account. -->
62 <StackPanel x:Name="_sipAccountCreationStack_"
63 Visibility="Collapsed">
64 <TextBox Margin="10"
65 PlaceholderText="Enter hostname"/>
66 <TextBox Margin="10"
67 PlaceholderText="Enter your username"/>
68 <PasswordBox Margin="10"
69 PlaceholderText="Enter your password"/>
70 <PasswordBox Margin="10"
71 PlaceholderText="Repeat your Password"/>
72 </StackPanel>
73 </StackPanel>
74 <!-- buttons yes/no to create the new account. -->
75 <Grid Grid.Row="1">
76 <StackPanel Orientation="Horizontal"
77 HorizontalAlignment="Center">
78 <Button x:Name="_createAccountYes_"
79 Grid.Row="1"
80 VerticalAlignment="Center"
81 HorizontalAlignment="Center"
82 Content="&#xE081;"
83 Click="_createAccountYes__Click"
84 Style="{StaticResource ButtonStyle2}"/>
85 </StackPanel>
86 </Grid>
87 </Grid>
88 </StackPanel>
89 <Rectangle Height="50"/>
90 <!-- add account. -->
91 <StackPanel Height="auto"
92 Background="LightBlue"
93 Grid.Column="2">
94 <TextBlock x:Name="_showAddAccountMenuTitle_"
95 Text="Add Existing Account"
96 Foreground="White"
97 Visibility="Collapsed"
98 FontSize="30"
99 HorizontalAlignment="Center"/>
100 <Button x:Name="_showAddAccountMenuBtn_"
101 Visibility="Visible"
102 Content="Add Existing Account"
103 HorizontalAlignment="Center"
104 Style="{StaticResource ButtonStyle4}"
105 Click="_showAddAccountMenuBtn__Click"/>
106 <Grid x:Name="_accountAddMenuGrid_"
107 Visibility="Collapsed"
108 Background="LightBlue">
109 <Grid.RowDefinitions>
110 <RowDefinition Height="auto"/>
111 <RowDefinition Height="30"/>
112 </Grid.RowDefinitions>
113 <!-- add account. -->
114 <StackPanel Background="#FFE4F1F9">
115 <TextBox x:Name="_PINTextBox_"
116 Margin="10"
117 PlaceholderText="Enter PIN"/>
Nicolas Jagere4eb5132016-10-04 14:25:15 -0400118 <PasswordBox x:Name="_ArchivePassword_"
119 Margin="10"
atraczyk61b28422016-08-24 09:25:59 -0400120 PlaceholderText="Enter your password"/>
121 </StackPanel>
122 <!-- buttons yes/no to add the account. -->
123 <Grid Grid.Row="1">
124 <StackPanel Orientation="Horizontal"
125 HorizontalAlignment="Center">
126 <Button x:Name="_addAccountYes_"
127 Grid.Row="1"
128 VerticalAlignment="Center"
129 HorizontalAlignment="Center"
130 Content="&#xE081;"
Nicolas Jagere4eb5132016-10-04 14:25:15 -0400131 Click="_addAccountYes__Click"
atraczyk61b28422016-08-24 09:25:59 -0400132 Style="{StaticResource ButtonStyle2}"/>
133 </StackPanel>
134 </Grid>
135 </Grid>
136 </StackPanel>
137 <!--</Grid>-->
138 </StackPanel>
139 </Grid>
140
141
142
143
144
145
146
147</Page>