Guest User

Untitled

a guest
Feb 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. class AddUser extends React.Component {
  2. constructor(foProperties) {
  3. super(foProperties);
  4. }
  5.  
  6. render() {
  7. return (
  8. <div className="row">
  9. <div className="col-md-12">
  10. <div className="horizontal-form style1" method="post">
  11. <div class="form-body">
  12. <input ref={c => this.inUserId = c} type="hidden"></ input>
  13.  
  14. <div className="row">
  15. <div className="col-md-3">
  16. <div class="form-group">
  17. <label className="control-label">First Name: </label>
  18. <input id="stFirstName" type="text" ref={c => this.props.loUser.stFirstName = c} className="form-control focus" maxlength="11" placeholder="First Name" tabindex="1"></input>
  19. </div>
  20. </div>
  21. <div className="col-md-3">
  22. <div class="form-group">
  23. <label className="control-label">Last Name: </label>
  24. <input id="stLastName" type="text" ref={c => this.props.loUser.stLastName = c} className="form-control" maxlength="11" placeholder="Last Name" tabindex="2"></input>
  25. </div>
  26. </div>
  27. <div className="col-md-3">
  28. <div class="form-group">
  29. <label className="control-label">UserName: </label>
  30. <input id="stUserName" type="text" ref={c => this.props.loUser.stUserName = c} className="form-control" maxlength="11" placeholder="User Name" tabindex="3"></input>
  31. </div>
  32. </div>
  33. <div className="col-md-3">
  34. <div class="form-group">
  35. <label className="control-label">Password: </label>
  36. <input id="stPassword" type="text" ref={c => this.props.loUser.stPassword = c} className="form-control" maxlength="11" placeholder="Password" tabindex="4"></input>
  37. </div>
  38. </div>
  39. </div>
  40.  
  41. </div>
  42. <br />
  43. <div className="form-actions fixed-footer">
Add Comment
Please, Sign In to add comment