Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset='utf-8' />
  4. </head>
  5. <body>
  6. <form action='register_action.php' method='POST'>
  7. <fieldset>
  8. <label>ユーザー登録</label><br>
  9. <label>ユーザー名</label>
  10. <input type='text' name='name'/><br>
  11. <label>パスワード</label>
  12. <input type='password' name='password'/>
  13. <button>登録</button>
  14. </fieldset>
  15. </form>
  16. <form action='login.php' method='POST'>
  17. <fieldset>
  18. <label>ログイン</label><br>
  19. <label>ユーザー名</label>
  20. <input type='text' name='name'/><br>
  21. <label>パスワード</label>
  22. <input type='password' name='password' />
  23. <button>ログイン</button>
  24. </fieldset>
  25. </form>
  26. <form action='delete_user.php' method='POST'>
  27. <fieldset>
  28. <label>ユーザー削除</label><br>
  29. <label>ユーザー名</label>
  30. <input type='text' name='name' /><br>
  31. <label>パスワード</label>
  32. <input type='password' name='password'/>
  33. <button>削除</button>
  34. </fieldset>
  35. </form>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement