larxius commited on
Commit
08af923
·
verified ·
1 Parent(s): 4a643ec

Update frontend/src/pages/Login.jsx

Browse files
Files changed (1) hide show
  1. frontend/src/pages/Login.jsx +6 -2
frontend/src/pages/Login.jsx CHANGED
@@ -94,7 +94,9 @@ export const Login = () => {
94
  <form className="flex flex-col gap-5 relative z-10" onSubmit={handleSubmit}>
95
 
96
  <div className="flex flex-col gap-2">
97
- <label className="text-xs font-semibold text-slate-500 uppercase tracking-widest" htmlFor="email">Email Address</label>
 
 
98
  <div className="relative group">
99
  <div className="absolute inset-y-0 left-0 pl-4 flex items-center pointer-events-none transition-colors group-focus-within:text-blue-600 text-slate-400">
100
  <span className="material-symbols-outlined text-[20px]">mail</span>
@@ -113,7 +115,9 @@ export const Login = () => {
113
 
114
  <div className="flex flex-col gap-2">
115
  <div className="flex justify-between items-center">
116
- <label className="text-xs font-semibold text-slate-500 uppercase tracking-widest" htmlFor="password">Password</label>
 
 
117
  <a className="text-xs text-blue-600 hover:text-blue-700 hover:underline transition-colors font-medium" href="#">Forgot password?</a>
118
  </div>
119
  <div className="relative group">
 
94
  <form className="flex flex-col gap-5 relative z-10" onSubmit={handleSubmit}>
95
 
96
  <div className="flex flex-col gap-2">
97
+ <label className="text-xs font-semibold text-slate-500 uppercase tracking-widest" htmlFor="email">
98
+ Email Address <span className="text-red-500">*</span>
99
+ </label>
100
  <div className="relative group">
101
  <div className="absolute inset-y-0 left-0 pl-4 flex items-center pointer-events-none transition-colors group-focus-within:text-blue-600 text-slate-400">
102
  <span className="material-symbols-outlined text-[20px]">mail</span>
 
115
 
116
  <div className="flex flex-col gap-2">
117
  <div className="flex justify-between items-center">
118
+ <label className="text-xs font-semibold text-slate-500 uppercase tracking-widest" htmlFor="password">
119
+ Password <span className="text-red-500">*</span>
120
+ </label>
121
  <a className="text-xs text-blue-600 hover:text-blue-700 hover:underline transition-colors font-medium" href="#">Forgot password?</a>
122
  </div>
123
  <div className="relative group">