Guest User

Untitled

a guest
Jan 20th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <div className="form">
  2. <form>
  3. <h4>Desired Username: </h4>
  4. <input
  5. type="text"
  6. name="uName"
  7. value={this.state.uName}
  8. onChange={this.userInput}
  9. placeholder="Desired Username"
  10. />
  11. <h4>Password: </h4>
  12. <input
  13. type="password"
  14. name="pass"
  15. value={this.state.pass}
  16. onChange={this.userInput}
  17. placeholder="Type Password Here"
  18. />
  19. <h4>Password Confirm: </h4>
  20. <input
  21. type="password"
  22. name="passConf"
  23. value={this.state.passConf}
  24. onChange={this.userInput}
  25. placeholder="Retype Your Password"
  26. />
  27. <br />
  28. <br />
  29. <button type="button">Register User</button>
  30. </form>
  31. </div>
Add Comment
Please, Sign In to add comment