assignment 01

<html> <head> <title>my Page</title> <meta charset="utf-8"> <meta name="description" content="data your user" /> </head> <body> <h1>data your user</h1> <form method="post" action="test.py"> <input type="hidden" value="8888"> <div> <label> username </label> <br /> <input type="text" placeholder="enter username" required> </div> <hr> <div> <label> password </label> <br /> <input type="password" placeholder="Enter a strong password"> </div> <hr> <div> <label> mobile </label> <br /> <input type="number" placeholder="+20100 (234) 123"> </div> <hr> <div> <label> email </label> <br /> <input type="email" placeholder="should be have @" required> </div> <hr> <div> <label> subject </label> <br /> <input type="text" placeholder="enter the subject"> </div> <input type="submit" value="Send Data"> <input type="reset" value="empty form"> </form> </body> </html>