Skip to content

Instantly share code, notes, and snippets.

@boyofgreen
Created March 26, 2012 16:27
Show Gist options
  • Save boyofgreen/2206332 to your computer and use it in GitHub Desktop.
Save boyofgreen/2206332 to your computer and use it in GitHub Desktop.
live form!
...
<progress class="completeMeter" min="0" max="100" low="0" high="10" value="0" ></progress>
</div>
<form id="RegisterUserForm" action="" name="myForm" method="post">
<fieldset>
<p>
<label for="name">Name</label>
<input id="name" name="name" type="text" class="text" placeholder="Name"
value="" required />
</p>
<p>
<label for="tel">Phone Number</label>
<input id="tel" name="tel" type="tel" class="text" placeholder="Phone Number"
value="" pattern="\d\d\d-\d\d\d-\d\d\d\d" required />
</p>
<p>
<label for="email">Email</label>
<input id="email" name="email" type="email" class="text" placeholder="Email"
value="" required />
</p>
<p>
<label for="password">Password</label>
<input id="password" name="password" class="text" placeholder="Password"
type="password" min="5" max="15" required />
</p>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment