AxL95 commited on
Commit
f5b48bb
·
verified ·
1 Parent(s): df5c323

Upload 3 files

Browse files
Files changed (3) hide show
  1. frontend/.env +2 -2
  2. frontend/debug.log +2 -2
  3. frontend/login.css +132 -132
frontend/.env CHANGED
@@ -1,3 +1,3 @@
1
- MONGODB_URI = "mongodb+srv://giffardaxel95:[email protected]/"
2
- DB_NAME = "chatmed_schizo"
3
  API_URL="https://medic-ial.netlify.app"
 
1
+ MONGODB_URI = "mongodb+srv://giffardaxel95:[email protected]/"
2
+ DB_NAME = "chatmed_schizo"
3
  API_URL="https://medic-ial.netlify.app"
frontend/debug.log CHANGED
@@ -1,2 +1,2 @@
1
- [0313/210235.919:ERROR:crashpad_client_win.cc(811)] not connected
2
- [0313/210236.146:ERROR:crashpad_client_win.cc(811)] not connected
 
1
+ [0313/210235.919:ERROR:crashpad_client_win.cc(811)] not connected
2
+ [0313/210236.146:ERROR:crashpad_client_win.cc(811)] not connected
frontend/login.css CHANGED
@@ -1,133 +1,133 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Trade+Winds&display=swap');
2
-
3
- .login {
4
- width: 100%;
5
- height: 100%;
6
- margin: 0;
7
- padding: 0;
8
- color: white;
9
- font-family: 'Montserrat', sans-serif;
10
- }
11
-
12
-
13
- .title-1 {
14
- text-align: center;
15
- font-weight: 200;
16
- margin: 3%;
17
- }
18
-
19
- .title-2 {
20
- text-align: center;
21
- }
22
-
23
- .title-2 span {
24
- text-decoration: underline;
25
- cursor: pointer;
26
- }
27
-
28
- .container {
29
- height: 70%;
30
- display: flex;
31
- justify-content: center;
32
- align-items: center;
33
- flex-direction: column;
34
- font-family: 'Montserrat', sans-serif;
35
- }
36
-
37
- .container-form {
38
- background-color: rgb(30, 33, 54, 0.2);
39
- border-radius: 20px;
40
- width: 40%;
41
- height: 100%;
42
- display: flex;
43
- align-items: center;
44
- justify-content: center;
45
- }
46
-
47
- .form {
48
- display: flex;
49
- justify-content: space-around;
50
- flex-direction: column;
51
- color: white;
52
- width: 60%;
53
- height: 90%;
54
- box-sizing: border-box;
55
- }
56
-
57
-
58
- .form-container-input {
59
- display: flex;
60
- justify-content: center;
61
- flex-direction: column;
62
- }
63
-
64
- .form-container-name {
65
- width: 100%;
66
- display: flex;
67
- flex-direction: row;
68
- justify-content: space-between;
69
- }
70
-
71
- .form-container-input>input, .form-container-name input {
72
- width: 100%;
73
- height: 2rem;
74
- color: white;
75
- }
76
-
77
- .form-container-name div{
78
- width: 45%;
79
- }
80
-
81
- input:focus {
82
- border: none;
83
- outline: none;
84
- border-bottom: 1px solid white;
85
- }
86
-
87
- .form-input {
88
- border: none;
89
- box-shadow: none;
90
- background-color: transparent;
91
- border-bottom: 1px solid white;
92
- }
93
-
94
- .form-title {
95
- font-size: x-small;
96
- }
97
-
98
- .form-container-submit {
99
- width: 100%;
100
- display: flex;
101
- align-items: center;
102
- justify-content: center;
103
- flex-direction: column;
104
- }
105
-
106
- .form-container-submit>p {
107
- text-decoration: underline;
108
- font-size: small;
109
- cursor: pointer;
110
- }
111
-
112
- .form-container-submit>button {
113
- background: none;
114
- border: 1px solid white;
115
- border-radius: 10px;
116
- color: white;
117
- text-align: center;
118
- width: 60%;
119
- height: 3rem;
120
- font-family: 'Montserrat', sans-serif;
121
- cursor: pointer;
122
- }
123
-
124
- .form-container-submit>button:hover {
125
- background: white;
126
- color: black;
127
- }
128
-
129
- @media (max-width: 1200px) {
130
- .form-container-name {
131
- flex-direction: column;
132
- }
133
  }
 
1
+ @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Trade+Winds&display=swap');
2
+
3
+ .login {
4
+ width: 100%;
5
+ height: 100%;
6
+ margin: 0;
7
+ padding: 0;
8
+ color: white;
9
+ font-family: 'Montserrat', sans-serif;
10
+ }
11
+
12
+
13
+ .title-1 {
14
+ text-align: center;
15
+ font-weight: 200;
16
+ margin: 3%;
17
+ }
18
+
19
+ .title-2 {
20
+ text-align: center;
21
+ }
22
+
23
+ .title-2 span {
24
+ text-decoration: underline;
25
+ cursor: pointer;
26
+ }
27
+
28
+ .container {
29
+ height: 70%;
30
+ display: flex;
31
+ justify-content: center;
32
+ align-items: center;
33
+ flex-direction: column;
34
+ font-family: 'Montserrat', sans-serif;
35
+ }
36
+
37
+ .container-form {
38
+ background-color: rgb(30, 33, 54, 0.2);
39
+ border-radius: 20px;
40
+ width: 40%;
41
+ height: 100%;
42
+ display: flex;
43
+ align-items: center;
44
+ justify-content: center;
45
+ }
46
+
47
+ .form {
48
+ display: flex;
49
+ justify-content: space-around;
50
+ flex-direction: column;
51
+ color: white;
52
+ width: 60%;
53
+ height: 90%;
54
+ box-sizing: border-box;
55
+ }
56
+
57
+
58
+ .form-container-input {
59
+ display: flex;
60
+ justify-content: center;
61
+ flex-direction: column;
62
+ }
63
+
64
+ .form-container-name {
65
+ width: 100%;
66
+ display: flex;
67
+ flex-direction: row;
68
+ justify-content: space-between;
69
+ }
70
+
71
+ .form-container-input>input, .form-container-name input {
72
+ width: 100%;
73
+ height: 2rem;
74
+ color: white;
75
+ }
76
+
77
+ .form-container-name div{
78
+ width: 45%;
79
+ }
80
+
81
+ input:focus {
82
+ border: none;
83
+ outline: none;
84
+ border-bottom: 1px solid white;
85
+ }
86
+
87
+ .form-input {
88
+ border: none;
89
+ box-shadow: none;
90
+ background-color: transparent;
91
+ border-bottom: 1px solid white;
92
+ }
93
+
94
+ .form-title {
95
+ font-size: x-small;
96
+ }
97
+
98
+ .form-container-submit {
99
+ width: 100%;
100
+ display: flex;
101
+ align-items: center;
102
+ justify-content: center;
103
+ flex-direction: column;
104
+ }
105
+
106
+ .form-container-submit>p {
107
+ text-decoration: underline;
108
+ font-size: small;
109
+ cursor: pointer;
110
+ }
111
+
112
+ .form-container-submit>button {
113
+ background: none;
114
+ border: 1px solid white;
115
+ border-radius: 10px;
116
+ color: white;
117
+ text-align: center;
118
+ width: 60%;
119
+ height: 3rem;
120
+ font-family: 'Montserrat', sans-serif;
121
+ cursor: pointer;
122
+ }
123
+
124
+ .form-container-submit>button:hover {
125
+ background: white;
126
+ color: black;
127
+ }
128
+
129
+ @media (max-width: 1200px) {
130
+ .form-container-name {
131
+ flex-direction: column;
132
+ }
133
  }