Created
October 28, 2012 12:22
-
-
Save spbooks/3968474 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="myModal" class="modal hide fade smallModal"> | |
<form id="signup-form" action="/signup" method="post" class="form-horizontal"> | |
<div class="modal-header"><a data-dismiss="modal" class="close"></a> | |
<h3>Sign Up Today</h3></div> | |
<div class="modal-body"> | |
<fieldset> | |
<div class="control-group"> | |
<input type="text" name="username" placeholder="Username" class="input-xlarge uname"/> | |
<span id="imagePlaceHolder"></span> | |
</div> | |
<div class="control-group"> | |
<input type="text" name="email" placeholder="Email" class="input-xlarge"/> | |
</div> | |
<div class="control-group"> | |
<input type="password" name="password" placeholder="Password" class="input-xlarge"/> | |
</div> | |
</fieldset> | |
</div> | |
<div class="modal-footer"><a href="#" data-dismiss="modal" class="btn">Close</a> | |
<button class="btn btn-primary create-button" type="submit">Create Account</button> | |
</div> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment