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 c555a25..fb11834 100644 --- a/src/components/Card.js +++ b/src/components/Card.js | |||
| @@ -37,9 +37,9 @@ class Card extends React.Component { | |||
| 37 | 37 | ||
| 38 | <div className="text"> | 38 | <div className="text"> |
| 39 | <label>Network name</label> | 39 | <label>Network name</label> |
| 40 | <input id="ssid" type="text" placeholder="Enter your WiFi Network" value={this.state.ssid} onChange={this.handleSSIDChange}/> | 40 | <input id="ssid" type="text" maxlength="32" placeholder="Enter your WiFi Network" value={this.state.ssid} onChange={this.handleSSIDChange}/> |
| 41 | <label>Password</label> | 41 | <label>Password</label> |
| 42 | <input id="password" type="text" placeholder="password" value={this.state.password} onChange={this.handlePasswordChange}/> | 42 | <input id="password" type="text" maxlength="64" placeholder="password" value={this.state.password} onChange={this.handlePasswordChange}/> |
| 43 | </div> | 43 | </div> |
| 44 | </div> | 44 | </div> |
| 45 | 45 | ||
