Last active
June 22, 2020 03:52
-
-
Save rwaddin/a04c8cc0e7e6958e1b37c615c9b559e2 to your computer and use it in GitHub Desktop.
bootstrap v3
This file contains hidden or 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
<form class="form-horizontal"> | |
<div class="form-group"> | |
<label class="control-label col-sm-2" for="email">Email:</label> | |
<div class="col-sm-10"> | |
<input type="email" class="form-control" id="email" placeholder="Enter email"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label class="control-label col-sm-2" for="pwd">Password:</label> | |
<div class="col-sm-10"> | |
<input type="password" class="form-control" id="pwd" placeholder="Enter password"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<div class="col-sm-offset-2 col-sm-10"> | |
<button type="submit" class="btn btn-default">Submit</button> | |
</div> | |
</div> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment