Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. import axios from 'axios';
  2. import React from 'react';
  3. import { Jumbotron } from 'react-bootstrap';
  4.  
  5. class Login extends React.Component {
  6. constructor(props) {
  7. super(props);
  8. }
  9.  
  10. render () {
  11. return (
  12. <Jumbotron>
  13. <form id="login" name="login" method="post" action="/login">
  14. <label>Email Address</label>
  15. <input className="text" name="email" type="text" />
  16. <label>Password</label>
  17. <input name="password" type="password" />
  18. <input className="btn" type="submit" value="Login" />
  19. </form>
  20. </Jumbotron>
  21. )
  22. }
  23. }
  24.  
  25. module.exports = Login;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement