Skip to content

Commit

Permalink
fix placeholder (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
munyanezaarmel authored Nov 14, 2024
1 parent 87624c7 commit 285b948
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions website/src/app/Components/HomeComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const HomeComponent: React.FC = () => {
</label>
<input
type="text"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black placeholder-gray-700"
id="serialNumber"
value={serialNumber}
onChange={(e) => setSerialNumber(e.target.value)}
Expand All @@ -117,7 +117,7 @@ const HomeComponent: React.FC = () => {
</label>
<input
type="number"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black placeholder-gray-700"
id="counter"
value={counter ?? ""}
onChange={(e) =>
Expand All @@ -136,7 +136,7 @@ const HomeComponent: React.FC = () => {
</label>
<input
type="number"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black placeholder-gray-700"
id="startingCode"
value={startingCode ?? ""}
onChange={(e) =>
Expand All @@ -157,7 +157,7 @@ const HomeComponent: React.FC = () => {
</label>
<input
type="text"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black placeholder-gray-700"
id="privateKey"
value={privateKey}
onChange={(e) => setPrivateKey(e.target.value)}
Expand Down Expand Up @@ -204,7 +204,7 @@ const HomeComponent: React.FC = () => {
</label>
<input
type="number"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black"
className="mt-1 block w-full border border-gray-300 rounded-md p-2 text-black placeholder-gray-700"
id="commandArgument"
value={commandArgument}
onChange={(e) => setCommandArgument(parseInt(e.target.value))}
Expand Down

0 comments on commit 285b948

Please sign in to comment.