Skip to content

Instantly share code, notes, and snippets.

@jorgedfbranco
Created February 9, 2015 21:28
Show Gist options
  • Save jorgedfbranco/59acf5121757e58418ba to your computer and use it in GitHub Desktop.
Save jorgedfbranco/59acf5121757e58418ba to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Register Account</title>
<script>
function form_submit() {
alert('submitting!')
}
</script
</head>
<body>
<div>
<h1>Register Account</h1>
<p>Insert the following information below so we can create an account for you:</p>
<form method="post" action="register.html">
<p>Mail:</p>
<input type="mail" name="mail" />
<p>Password:</p>
<input type="password" name="password1" />
<p>Repeat Password:</p>
<input type="password" name="password2" />
<p />
<input type="button" value="Register Account" onclick="form_submit()" />
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment