Advertisement
kosim69

Untitled

Feb 10th, 2017
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. .LoginForm
  5. {
  6. width : 400px;
  7. padding : 10px;
  8. border : 2px Solid #000;
  9. border-radius : 10px;
  10. margin : Auto;
  11. }
  12. .TextBox
  13. {
  14. width : 250px;
  15. margin : 10px
  16. }
  17. .Tombol
  18. {
  19. width : 150px;
  20. height : 30px
  21. margin : 5px
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="LoginForm">
  27. <form action="belajar.php" Method="post">
  28. Username : <input type="Username" class="TextBox" Name="txtUser">
  29. Password : <input type="Password" class="TextBox" Name="txtPass">
  30. <input class="tombol" type="Submit" Value="Login!">
  31. </form>
  32. </div>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement