-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admin.xaml
76 lines (67 loc) · 2.78 KB
/
Admin.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<Page
x:Class="ShegzstuffPC.Admin"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ShegzstuffPC"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<StackPanel
Orientation="Vertical"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<TextBlock Name="Title" VerticalAlignment="Top" HorizontalAlignment="Left"/>
<StackPanel Orientation="Horizontal"
x:Name="PasswordStackpanel"
Margin="00,00,30,00"
>
<TextBlock Text="Enter Password"
FontSize="20"
/>
<PasswordBox x:Name="AdminPassword"
Width="200"
PasswordChar="*"
/>
<Button Content="SignIn"
Background="DarkGreen"
Foreground="White"
x:Name="SigninButton"
Click="SigninButton_Click"/>
</StackPanel>
<TextBlock Foreground="Red"
x:Name="Passwordchecker"
HorizontalAlignment="Center"
Text="Incorrect password"
Visibility="Collapsed"/>
<StackPanel Orientation="Horizontal"
x:Name="DetailsStackPannel"
Visibility="Collapsed">
<TextBlock
Text="Present Whatsapp Url: "
FontSize="20"
Margin="00,00,30,00"/>
<TextBlock x:Name="CurrentWHatsappTextBlock"
Text="https://chat.whatsapp.com/HPmOUETUtWr9K0LzMhUHBz:"
FontSize="20"
Margin="00,00,30,00"/>
</StackPanel>
<StackPanel Orientation="Horizontal"
Visibility="Collapsed"
x:Name="ChangeURLStackpannel">
<TextBlock x:Name="WHatsappTextBlock"
Text="Enter new Url:"
FontSize="20"
Margin="00,00,30,00"/>
<TextBox x:Name="ChangeWHatsappTextBox"
Width="200"
BorderThickness="3"
Margin="00,00,30,00"/>
<Button Content="Change Url"
Background="DarkGreen"
Foreground="White"
x:Name="CHangeUrlButton"
Click="CHangeUrlButton_Click"/>
</StackPanel>
</StackPanel>
</Page>