Advertisement
Fahim_7861

11

Dec 14th, 2020
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. var NewComponent = React.createClass({
  2. render: function() {
  3. return (
  4. <div>
  5. <meta charSet="UTF-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <link rel="stylesheet" href="index.css" className="css" />
  8. <title>Document</title>
  9. <div className="container" id="container">
  10. <div className="form-container sign-up-container">
  11. <form action="#">
  12. <h1>Create Account</h1>
  13. <div className="social-container">
  14. <a href="#" className="social"><i className="fab fa-facebook-f" /></a>
  15. <a href="#" className="social"><i className="fab fa-google-plus-g" /></a>
  16. <a href="#" className="social"><i className="fab fa-linkedin-in" /></a>
  17. </div>
  18. <span>or use your email for registration</span>
  19. <input type="text" placeholder="Name" />
  20. <input type="email" placeholder="Email" />
  21. <input type="password" placeholder="Password" />
  22. <button>Sign Up</button>
  23. </form>
  24. </div>
  25. <div className="form-container sign-in-container">
  26. <form action="#">
  27. <h1>Sign in</h1>
  28. <div className="social-container">
  29. <a href="#" className="social"><i className="fab fa-facebook-f" /></a>
  30. <a href="#" className="social"><i className="fab fa-google-plus-g" /></a>
  31. <a href="#" className="social"><i className="fab fa-linkedin-in" /></a>
  32. </div>
  33. <span>or use your account</span>
  34. <input type="email" placeholder="Email" />
  35. <input type="password" placeholder="Password" />
  36. <a href="#">Forgot your password?</a>
  37. <button>Sign In</button>
  38. </form>
  39. </div>
  40. <div className="overlay-container">
  41. <div className="overlay">
  42. <div className="overlay-panel overlay-left">
  43. <img src="image/logo.png" />
  44. <p>Welcome back! To keep connected with us please login with your personal info</p>
  45. <button className="ghost" id="signIn">Sign In</button>
  46. </div>
  47. <div className="overlay-panel overlay-right">
  48. <img src="image/logo.png" />
  49. <p>Hello! Enter your personal details and start journey with us</p>
  50. <button className="ghost" id="signUp">Sign Up</button>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. );
  57. }
  58. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement