<html>
(Choose 1 answer)
<body>
<form action="loginPage.jsp">
Login ID: <input type= "text" name="loginID"><br>
Password: <input type="password" name="password"><br>
<input type="submit" value="Login">
<input type="reset" value="Reset">
</form>
</body>
<html>
Study the above html code.
Assume that user clicks button Login.
Which is the correct statement?
A. The form intputs are submitted by GET method.
B. The loginPage.jsp is called.
C. The value of two text inputs appended to the requested URL.
D. All of the others
2: 30