diff --git a/.gitignore b/.gitignore
index 40cd7de..c2375b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,7 @@
# Generated by package manager
node_modules/
-
+*ionicons
# Generated by Cordova
/plugins/
/platforms/
diff --git a/www/login/index.html b/www/login/index.html
new file mode 100644
index 0000000..99d02e9
--- /dev/null
+++ b/www/login/index.html
@@ -0,0 +1,37 @@
+
+
+
+
+ Connection
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/www/login/login.css b/www/login/login.css
new file mode 100644
index 0000000..a1911c0
--- /dev/null
+++ b/www/login/login.css
@@ -0,0 +1,25 @@
+@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');
+*{
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 'Alegreya',sans-serif;
+}
+a{
+ text-decoration: none;
+}
+body{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ min-height: 100vh;
+ background: #585858;
+}
+
+.container{
+ position: relative;
+ width: 400px;
+ min-height: 550px;
+ justify-content: center;
+ align-items: center;
+}
\ No newline at end of file