You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<!doctype html> <html> <head> <title>input mask</title> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="style.css"> <script src="functions.js"></script> </head> <body> <section id="auth"> <form action=""> <input type="text" class="mask"> <input type="text" class="mask"> <input type="text" class="mask"> <input type="text" class="mask"> <input type="text" class="mask"> </form> <button onclick="clearForm()">Clear</button> </section> <script src="code.js"></script> </body> </html>
|