Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/Python27/python
- #Nama : Budi Darmawan
- #Kelas : 4A
- #NIM : 15090088
- # form.py
- print "Content-type: text/html"
- print
- print "<html>"
- print "<head><title>Test Form</title></head>"
- print "<body>"
- print " <form action='kirim.py' method='POST'>"
- print "<br>Username</br>"
- print " <input type='text' name='username' />"
- print "<br>Password</br>"
- print " <input type='text' name='password' />"
- print " <input type='submit' value='Submit' />"
- print " </form>"
- print "</body>"
- print "</html>"
Advertisement
Add Comment
Please, Sign In to add comment