Guest User

Untitled

a guest
Jul 11th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. class Signin extends React.PureComponent {
  2. render () {
  3. return (
  4. <div className='container container-xs text-center'>
  5. <form onSubmit={onSubmit} role='form' className='form'>
  6. <div className='form-group text-left'>
  7. <label className='control-label'>Email</label>
  8. <input
  9. type='text'
  10. className='form-control'
  11. value={email}
  12. onChange={evt => setEmail(evt.target.value)}
  13. />
  14. </div>
  15. <div className='form-group text-left'>
  16. <label className='control-label'>Password</label>
  17. <input
  18. type='password'
  19. className='form-control'
  20. value={password}
  21. onChange={evt => setPassword(evt.target.value)}
  22. />
  23. </div>
  24. <button>Sign in</button>
  25. </form>
  26. </div>
  27. )
  28. }
  29. }
Add Comment
Please, Sign In to add comment