Advertisement
lobaev

Untitled

Jul 22nd, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="eu">
  3. <head>
  4. <!-- <link rel="stylesheet" type="text/css" href="... path to file"> -->
  5. <meta charset="utf-8">
  6. <title>Chat registration</title>
  7. </head>
  8. <body>
  9. <h1 align="center">Please enter your details</h1>
  10. <div align="center">
  11. <form>
  12. <p><input type="text" placeholder="Username" id="userName" pattern="^[a-zA-Z]\w*[a-zA-Z]\w*[a-zA-Z]\w*$" required /></p>
  13. <p><input type="password" placeholder="Password" id="password" pattern="(?=.*[0-9])(?=.*[!@#$%^&*])(?=.*[a-z])(?=.*[A-Z])[0-9a-zA-Z!@#$%^&*]{7,64}$" required /></p>
  14. <p><input type="email" placeholder="Email" id="email" required /></p>
  15. <button id="bttn" type="submit">Registration</button>
  16. </form>
  17. </div>
  18. <div align="center">
  19. <p>If you have an account:<br><button id="logBttn" type="button">Login</button></p>
  20. </div>
  21. </body>
  22. <script type="text/javascript" src="scripts/registration.js"></script>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement