"login with social icons"
Bootstrap 3.0.0 Snippet by prabuanan

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Login</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/login.css" rel="stylesheet" type="text/css"/>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
</head>
<body>
<div id="login_form">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="panel panel-login login_block">
<div class="row">
<div class="col-lg-12">
<div class="centerLoginContent">
<form name="loginForm" action="/login" method="post">
<input type="hidden" name="initialURI" value="/">
<h2 class="login_title">LOGIN</h2>
<div class="">
<p class="login_text">Enter your Username and password <span>to sign in</span></p>
<!-- <div class="signinFail"><i class="uiIconError"></i>Signing in Error</div>
<div class="signinFail"><i class="uiIconError"></i>Signing in Error</div> -->
<div class="form-group">
<label for="username">User Name<span class="err_cls">*</span></label>
<input class="username form-control" tabindex="1" id="username" name="username" type="text" placeholder="Username" onblur="this.placeholder = 'Username'" onfocus="this.placeholder = ''"/>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body {
color: #333333;
background-color: #cdcdcd;
}
.panel {
border-radius: 0px
}
/* custom login css */
.login_title
{
margin: 0px;
text-align: center;
background: #efefef;
font-size: 18px;
padding: 20px 0px 20px 0px;
}
.login_block
{
border-radius: 0px;
}
.login_text
{
text-align: center;
font-size: 12px;
color: #8b8b8b;
margin: 10px 4px 22px 10px;
border-bottom: 1px solid #efefef;
padding: 12px 0px 24px 0px;
}
.login_text span
{
font-weight: bold;
}
.err_cls
{
color: red;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: