regestration.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>log</title>
  7. <link rel="stylesheet" href="style/style.css">
  8. <link rel="preconnect" href="https://fonts.gstatic.com">
  9. <link href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap" rel="stylesheet">
  10. </head>
  11. <body>
  12. <script src="js/script.js"></script>
  13. <div class="form">
  14. <div class="tab">
  15. <a href="#" class="signup" >Sing Up</a>
  16. <a href="#" class="login">Log In</a>
  17. </div>
  18. <div class="contentSingup">
  19. <form class="forsms" onsubmit="return false;">
  20. <h2 id="error">Sing Up for Free</h2>
  21. <div class="name_block">
  22. <input type="text" placeholder="First Name *" id="fName">
  23. <input type="text" placeholder="Last Name *" id="lName">
  24. </div>
  25. <div class="e_p_block">
  26. <input type="text" placeholder="Email Addres *" id="email">
  27. <input type="text" placeholder="Set A Password *" id="password">
  28. </div>
  29. <input type="submit" class="button-block" onclick="chek(); return false;" value="Get Started"/>
  30. </form>
  31. </div>
  32. </div>
  33. </body>
  34. </html>