Question 13
Consider the following HTML code .
File name: login.html
<!DOCTYPE html><html lang="en"><head> <title>Login Page</title></head><body> <form action="/"> <label for="uname">Username</label><br> <input type="text" name="uname" id="uname"><br> <label for="pwd">Password</label><br> <input type="password" name="pwd" id="pwd"><br> <input type="submit" value="Login"> </form></body></html>When the user clicks on the “Login” button the form data will be sent to the server using which HTTP method?
GET
POST
PUT
DELETE