diff options
Diffstat (limited to 'src/components')
| -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 dfe804f..6c97947 100644 --- a/src/components/Card.js +++ b/src/components/Card.js | |||
| @@ -42,9 +42,9 @@ const Card = () => { | |||
| 42 | 42 | ||
| 43 | <div className="text"> | 43 | <div className="text"> |
| 44 | <label>Network name</label> | 44 | <label>Network name</label> |
| 45 | <input id="ssid" type="text" maxlength="32" placeholder="WiFi Network name" value={ssid} onChange={event => setSsid(event.target.value)} /> | 45 | <input id="ssid" type="text" maxLength="32" placeholder="WiFi Network name" value={ssid} onChange={event => setSsid(event.target.value)} /> |
| 46 | <label>Password</label> | 46 | <label>Password</label> |
| 47 | <input id="password" type="text" maxlength="64" placeholder="Password" value={password} onChange={event => setPassword(event.target.value)} /> | 47 | <input id="password" type="text" maxLength="64" placeholder="Password" value={password} onChange={event => setPassword(event.target.value)} /> |
| 48 | </div> | 48 | </div> |
| 49 | </div> | 49 | </div> |
| 50 | 50 | ||
