Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> label { display: block; margin: 20px; overflow: auto; font-family: sans-serif; font-size: 18px; color: #444; text-shadow: 0 0 2px #000; padding: 20px 10px 10px 0; } input { width: 150px; border: 2px solid #aeaeb5; border-radius: 6px; font-size: 20px; padding: 2px; margin-top: -10px; } input:focus { outline: none; border-color: #26bf47; box-shadow: 0 0 10px #26bf47; } </style> </head> <body> <form action="/form/submit" method="post"> <label>Enter your password: <input name="password" type="password"> </label> <label> Confirm your password: <input name="password-confirm" type="password"> </label> </form> </body> </html>