Skip to content

Instantly share code, notes, and snippets.

@paulopatto
Created September 23, 2010 20:12
Show Gist options
  • Select an option

  • Save paulopatto/594262 to your computer and use it in GitHub Desktop.

Select an option

Save paulopatto/594262 to your computer and use it in GitHub Desktop.
<!--
Apenas para exemplificar submit com input.image.
-->
<html>
<head>
<script language='javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>
</head>
<body>
<form id='formLogin' name='login' method='POST' action='http://www.google.com/instant'>
<label>Nome ou e-mail:</label><br />
<input type='text' name='login_email' />
<br />
<br />
<label>senha:</label><br />
<input type='password' name='senha' /><br/>
<!-- Favor coloque o src da sua imagem correta -->
<input type='image' onclick='javascript:$("#formLogin").submit(); return false' src='http://assets2.github.com/images/icons/public.png'/>
</form>
</body>
</hrml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment