input label font weight increased

This commit is contained in:
victorAnumudu
2024-12-17 16:36:03 +01:00
parent 75d570ef6a
commit 2ce0005667
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -68,13 +68,13 @@ export default function Login() {
<div className="row">
<div className="col-12">
<div className="form-group">
<label className="control-label text-black">User Name*</label>
<label className="control-label text-black fw-bold">User Name*</label>
<input name='username' value={fields.username} onChange={handleChange} type="text" className="form-control" placeholder="Username" />
</div>
</div>
<div className="col-12">
<div className="form-group">
<label className="control-label text-black">Password*</label>
<label className="control-label text-black fw-bold">Password*</label>
<input name='password' value={fields.password} onChange={handleChange} type="password" className="form-control" placeholder="Password" />
</div>
</div>