├── validation.js ├── styles.css └── index.html /validation.js: -------------------------------------------------------------------------------- 1 | // validation script here 2 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | body{ 2 | font-family: arial; 3 | color: #333; 4 | } 5 | h1{ 6 | font-weight: normal; 7 | margin: 20px auto; 8 | text-align: center; 9 | } 10 | form{ 11 | width: 500px; 12 | margin: 20px auto; 13 | } 14 | input{ 15 | display: block; 16 | padding: 8px 16px; 17 | font-size: 2em; 18 | margin: 10px auto; 19 | width: 100%; 20 | box-sizing: border-box; 21 | border-radius: 10px; 22 | border: 3px solid #ccc; 23 | outline: none !important; 24 | } 25 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |