Yaswanth56 commited on
Commit
43c1293
·
verified ·
1 Parent(s): e647528

Update templates/login.html

Browse files
Files changed (1) hide show
  1. templates/login.html +10 -11
templates/login.html CHANGED
@@ -8,7 +8,7 @@
8
  <style>
9
  body {
10
  font-family: 'Arial', sans-serif;
11
- background: linear-gradient(135deg, #ff7043, #ffca28); /* Gradient background */
12
  display: flex;
13
  justify-content: center;
14
  align-items: center;
@@ -18,16 +18,15 @@
18
  .login-container {
19
  background-color: #ffffff;
20
  padding: 40px;
21
- border-radius: 15px;
22
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
23
  width: 100%;
24
  max-width: 400px;
25
  text-align: center;
26
- background-color: rgba(255, 255, 255, 0.9);
27
  }
28
  .login-container h1 {
29
  font-size: 30px;
30
- color: #8d6e63; /* Warm brown */
31
  margin-bottom: 20px;
32
  font-family: 'Courier New', Courier, monospace;
33
  }
@@ -41,30 +40,30 @@
41
  font-size: 16px;
42
  border-radius: 25px;
43
  border: 1px solid #ccc;
44
- background-color: #f8e0c2;
45
  outline: none;
46
  text-align: center;
47
  }
48
  .input-group input:focus {
49
- border-color: #ff7043;
50
  }
51
  button {
52
  width: 100%;
53
  padding: 14px;
54
  font-size: 16px;
55
  border-radius: 30px;
56
- background: #ff7043;
57
  color: white;
58
  border: none;
59
  cursor: pointer;
60
  transition: background-color 0.3s ease;
61
  }
62
  button:hover {
63
- background: #f4511e;
64
  }
65
  .forgot-link {
66
  font-size: 12px;
67
- color: #ff7043;
68
  text-decoration: none;
69
  margin-top: 10px;
70
  }
@@ -74,10 +73,10 @@
74
  .register-link {
75
  margin-top: 15px;
76
  font-size: 12px;
77
- color: #8d6e63;
78
  }
79
  .register-link a {
80
- color: #ff7043;
81
  text-decoration: none;
82
  }
83
  .register-link a:hover {
 
8
  <style>
9
  body {
10
  font-family: 'Arial', sans-serif;
11
+ background: linear-gradient(135deg, #66bb6a, #388e3c); /* Green gradient */
12
  display: flex;
13
  justify-content: center;
14
  align-items: center;
 
18
  .login-container {
19
  background-color: #ffffff;
20
  padding: 40px;
21
+ border-radius: 20px;
22
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
23
  width: 100%;
24
  max-width: 400px;
25
  text-align: center;
 
26
  }
27
  .login-container h1 {
28
  font-size: 30px;
29
+ color: #388e3c; /* Dark green */
30
  margin-bottom: 20px;
31
  font-family: 'Courier New', Courier, monospace;
32
  }
 
40
  font-size: 16px;
41
  border-radius: 25px;
42
  border: 1px solid #ccc;
43
+ background-color: #f1f8e9; /* Light green background */
44
  outline: none;
45
  text-align: center;
46
  }
47
  .input-group input:focus {
48
+ border-color: #388e3c; /* Dark green on focus */
49
  }
50
  button {
51
  width: 100%;
52
  padding: 14px;
53
  font-size: 16px;
54
  border-radius: 30px;
55
+ background: linear-gradient(135deg, #66bb6a, #388e3c); /* Green gradient button */
56
  color: white;
57
  border: none;
58
  cursor: pointer;
59
  transition: background-color 0.3s ease;
60
  }
61
  button:hover {
62
+ background: linear-gradient(135deg, #388e3c, #66bb6a); /* Darker green on hover */
63
  }
64
  .forgot-link {
65
  font-size: 12px;
66
+ color: #388e3c;
67
  text-decoration: none;
68
  margin-top: 10px;
69
  }
 
73
  .register-link {
74
  margin-top: 15px;
75
  font-size: 12px;
76
+ color: #388e3c;
77
  }
78
  .register-link a {
79
+ color: #388e3c;
80
  text-decoration: none;
81
  }
82
  .register-link a:hover {