HTML code
This is the html code used to create this bootstrap snippet, You can copy, paste, change, customize and run the following HTML code to get a result like the one shown in the preview selection
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.0/css/font-awesome.css" rel="stylesheet">
<div class="row">
<div class="large-8 text-center">
<form class="form-signin">
<h2 class="form-signin-heading">Sign in</h2>
<small class="text-muted">Connect [your service] with your favorite social network</small>
<br>
<p>
<a class="button social-facebook" href="#/auth/facebook"><i class="fa fa-facebook"></i></a>
<a class="button social-twitter" href="#/auth/twitter"><i class="fa fa-twitter"></i></a>
</p>
<p>
<a class="button social-linkedin" href="#/auth/linkedin"><i class="fa fa-linkedin"></i></a>
<a class="button social-google" href="#/auth/google"><i class="fa fa-google-plus"></i></a>
</p>
<small class="text-muted">Or sign in with [your service]</small>
<br>
<input class="ember-view ember-text-field login-input" placeholder="Email Address" type="text">
<input class="ember-view ember-text-field login-input-pass" placeholder="Password" type="password">
<button class="button success btn-center" type="submit">Sign in</button>
<br>
<small class="create-account text-muted">
Dont have a [your service] or social network account?
</small>
<button class="secundary button"> Sign Up </button>
</form>
</div>
</div>
CSS code
This is the css code used to create this bootstrap snippet, You can copy, paste, change, customize and run the following CSS code to get a result Like the one shown in the preview selection
.text-muted {
color: #999;
}
small {
font-size: 85%;
}
.form-signin{
max-width: 360px;
padding: 15px;
margin: 0 auto;
}
.login-input {
margin-bottom: -1px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.login-input-pass {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.signup-input {
margin-bottom: -1px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.signup-input-confirm {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.create-account {
text-align: center;
width: 100%;
display: block;
}
.btn-center{
width: 50%;
text-align: center;
margin: inherit;
}
.social-login-btn {
margin: 5px;
width: 20%;
font-size: 250%;
padding: 0;
}
.social-login-more {
width: 45%;
}
.social-google {
background-color: #da573b;
border-color: #be5238;
}
.social-google:hover{
background-color: #be5238;
border-color: #9b4631;
}
.social-twitter {
background-color: #1daee3;
border-color: #3997ba;
}
.social-twitter:hover {
background-color: #3997ba;
border-color: #347b95;
}
.social-facebook {
background-color: #4c699e;
border-color: #47618d;
}
.social-facebook:hover {
background-color: #47618d;
border-color: #3c5173;
}
.social-linkedin {
background-color: #4875B4;
border-color: #466b99;
}
.social-linkedin:hover {
background-color: #466b99;
border-color: #3b5a7c;
}