Half broken
This commit is contained in:
parent
6c1e65480b
commit
ed6f6797ad
1 changed files with 8 additions and 6 deletions
|
@ -66,7 +66,7 @@ class AuthMenu extends Component {
|
|||
placeholder="Username"
|
||||
name="username"
|
||||
onChange={this.handleInputChange}
|
||||
/>
|
||||
></input>
|
||||
<i className="users icon"></i>
|
||||
</div>
|
||||
<div className="fluid ui buttons">
|
||||
|
@ -83,9 +83,9 @@ class AuthMenu extends Component {
|
|||
<input
|
||||
type="text"
|
||||
placeholder="Password"
|
||||
name="password">
|
||||
name="password"
|
||||
onChange={this.handleInputChange}
|
||||
</input>
|
||||
></input>
|
||||
<i className="lock icon"></i>
|
||||
</div>
|
||||
<button onClick={this.handleLogInAttempt} className="fluid ui positive button">Log In</button>
|
||||
|
@ -100,7 +100,7 @@ class AuthMenu extends Component {
|
|||
placeholder="email@address.tld"
|
||||
name="email">
|
||||
onChange={this.handleInputChange}
|
||||
</input>
|
||||
></input>
|
||||
<i className="mail icon"></i>
|
||||
</div>
|
||||
<button onClick={this.handleAccountCreation} className="fluid ui teal button">Next</button>
|
||||
|
@ -110,8 +110,10 @@ class AuthMenu extends Component {
|
|||
return (
|
||||
<div className="ui menu dropdown" style={{display: "inline"}}>
|
||||
<div className="ui left icon input">
|
||||
<input type="text" placeholder="Password" name="password">
|
||||
</input>
|
||||
<input type="text"
|
||||
placeholder="Password"
|
||||
name="password"
|
||||
></input>
|
||||
<i className="lock icon"></i>
|
||||
</div>
|
||||
<button onClick={this.handleLogInAttempt} className="fluid ui positive button">Create Account!</button>
|
||||
|
|
Reference in a new issue