Skip to content

Instantly share code, notes, and snippets.

@thinkingserious
Created May 29, 2014 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinkingserious/14ba035d7c90a96f5350 to your computer and use it in GitHub Desktop.
Save thinkingserious/14ba035d7c90a96f5350 to your computer and use it in GitHub Desktop.
userapp-signup-form
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.1/css/bootstrap.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.1/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="https://app.userapp.io/css/demo/tutorial.css">
</head>
<body>
<div class="container" style="text-align: center;">
<form class="form" onsubmit="return signup()">
<h2 class="form-heading">Sign up for MyApp</h2>
<div class="form-fields">
<input id="name" type="text" class="form-control" placeholder="Name" autofocus>
<input id="username" type="text" class="form-control" placeholder="Username" required>
<input id="email" type="text" class="form-control" placeholder="Email address" required>
<input id="password" type="password" class="form-control" placeholder="Password" required>
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit">Create my account</button>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment