Advertisement
Tec4Gen

Untitled

Aug 13th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="stylesheet" type="text/css" href="auth.css">
  6. </head>
  7.  
  8. <div class="container" id="container">
  9. <div class="form-container sign-up-container">
  10. <form method="post" action="/auth" name="reg">
  11. <h1>Регистрация</h1>
  12. <input type="login_reg" name="login" placeholder="Имя пользователя" id="login_reg"/>
  13. <input type="email_reg" name="email" placeholder="Адрес электронной почты" id="email_reg"/>
  14. <input type="password_reg" name="password" placeholder="Пароль" id="password_reg"/>
  15. <button type="submit" id="submit_reg">Регистрация</button>
  16. </form>
  17. </div>
  18. <div class="form-container sign-in-container">
  19. <form method="post" action="/auth" name="login">
  20. <h1>Вход</h1>
  21. <input type="login" name="login" placeholder="Имя пользователя" />
  22. <input type="password" name="password" placeholder="Пароль" />
  23. <a href="#">Забыли пароль?</a>
  24. <button>Вход</button>
  25. </form>
  26. </div>
  27. <div class="overlay-container">
  28. <div class="overlay">
  29. <div class="overlay-panel overlay-left">
  30. <button class="ghost" id="signIn">Вход</button>
  31. </div>
  32. <div class="overlay-panel overlay-right">
  33. <button class="ghost" id="signUp">Регистрация</button>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <script src="auth_logic.js"></script>
  39. <script>
  40.  
  41. const signUpButton = document.getElementById('signUp');
  42. const signInButton = document.getElementById('signIn');
  43. const container = document.getElementById('container');
  44.  
  45. signUpButton.addEventListener('click', () => {
  46. console.log('1');
  47. container.classList.add("right-panel-active");
  48. });
  49.  
  50. signInButton.addEventListener('click', () => {
  51. container.classList.remove("right-panel-active");
  52. });
  53. </script>
  54.  
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement