diff options
Diffstat (limited to 'src/components/Card.js')
| -rw-r--r-- | src/components/Card.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Card.js b/src/components/Card.js index 7b615ea..2373b26 100644 --- a/src/components/Card.js +++ b/src/components/Card.js | |||
| @@ -24,9 +24,9 @@ const Card = () => { | |||
| 24 | 24 | ||
| 25 | <div className="text"> | 25 | <div className="text"> |
| 26 | <label>Network name</label> | 26 | <label>Network name</label> |
| 27 | <input id="ssid" type="text" maxlength="32" placeholder="Enter your WiFi Network" value={ssid} onChange={event => setSsid(event.target.value)} /> | 27 | <input id="ssid" type="text" maxlength="32" placeholder="WiFi Network name" value={ssid} onChange={event => setSsid(event.target.value)} /> |
| 28 | <label>Password</label> | 28 | <label>Password</label> |
| 29 | <input id="password" type="text" maxlength="64" placeholder="password" value={password} onChange={event => setPassword(event.target.value)} /> | 29 | <input id="password" type="text" maxlength="64" placeholder="Password" value={password} onChange={event => setPassword(event.target.value)} /> |
| 30 | </div> | 30 | </div> |
| 31 | </div> | 31 | </div> |
| 32 | 32 | ||
