diff --git a/SkyTeam/LogInPage.xaml b/SkyTeam/LogInPage.xaml
new file mode 100644
index 0000000..86139b5
--- /dev/null
+++ b/SkyTeam/LogInPage.xaml
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SkyTeam/LogInPage.xaml.cs b/SkyTeam/LogInPage.xaml.cs
new file mode 100644
index 0000000..7b0e257
--- /dev/null
+++ b/SkyTeam/LogInPage.xaml.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace SkyTeam
+{
+ ///
+ /// Interaction logic for LogInPage.xaml
+ ///
+ public partial class LogInPage : Page
+ {
+ public LogInPage()
+ {
+ InitializeComponent();
+ }
+
+
+
+ private void anmeldungsButton(object sender, RoutedEventArgs e)
+ {
+ ((MainWindow)Application.Current.MainWindow).MainFrame.Navigate(new RegistrationPage());
+
+ }
+
+ private void LogInButton(object sender, RoutedEventArgs e)
+ {
+ MessageBox.Show("Anmeldung erfolgreich!");
+
+ }
+ }
+}
diff --git a/SkyTeam/MainWindow.xaml b/SkyTeam/MainWindow.xaml
index 7525722..4290c59 100644
--- a/SkyTeam/MainWindow.xaml
+++ b/SkyTeam/MainWindow.xaml
@@ -5,8 +5,20 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SkyTeam"
mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
-
+ Title="MainWindow" Height="450" Width="800" Cursor="Arrow">
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SkyTeam/MainWindow.xaml.cs b/SkyTeam/MainWindow.xaml.cs
index e3e2155..f6483ea 100644
--- a/SkyTeam/MainWindow.xaml.cs
+++ b/SkyTeam/MainWindow.xaml.cs
@@ -19,6 +19,13 @@ namespace SkyTeam
public MainWindow()
{
InitializeComponent();
+ MainFrame.Navigate(new LogInPage());
+
}
+
+
+
+
+
}
}
\ No newline at end of file
diff --git a/SkyTeam/Regestrieren.xaml b/SkyTeam/Regestrieren.xaml
new file mode 100644
index 0000000..fb0cc19
--- /dev/null
+++ b/SkyTeam/Regestrieren.xaml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SkyTeam/Regestrieren.xaml.cs b/SkyTeam/Regestrieren.xaml.cs
new file mode 100644
index 0000000..fec4dcd
--- /dev/null
+++ b/SkyTeam/Regestrieren.xaml.cs
@@ -0,0 +1,38 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace SkyTeam
+{
+ ///
+ /// Interaction logic for Page1.xaml
+ ///
+ public partial class RegistrationPage : Page
+ {
+ public RegistrationPage()
+ {
+ InitializeComponent();
+ }
+
+
+ private void RegisterButton_Click(object sender, RoutedEventArgs e)
+ {
+
+
+
+
+
+ }
+ }
+}