tags:

views:

28

answers:

1
<form method="post" action="confirm_login_credentials.php">
    <table>
        <tr>
            <td>User ID:</td>
            <td><input type="text" id="uid"></td>
        </tr>
        <tr>
            <td>Password:</td>
            <td><input type="text" id="pass"></td>
        </tr>
        <tr>
            <td colspan="2" align="right">
                <a href="#"><img src="images/login.jpg"></a>
            </td>
        </tr>
    </table>
</form>

I am using image inspite of submit button. How can send login details when user clicks on login image like submit button does?

+3  A: 

You could use an image submit button:

<input type="image" src="images/login.jpg" alt="Submit Form" />
Darin Dimitrov
Amadiere