"Login Form "
Bootstrap 3.3.0 Snippet by Sagar2022

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="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ---------->
<nav class="navbar navbar-fixed-top" style="background-color:rgb(75, 75, 158); ">
</nav>
<div class="container " style="margin-top:30px;">
<div class="row">
<div class="col-md-6 col-md-offset-3 ">
<div class="page-header">
<h1 class="text-center"> Student Login </h1>
<hr/>
<h4 class="text-center">Welcome To Student Portal</h4>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
</div>
</div>
</div>
<!-- login form start -->
<form action="Student-Login.php" method="post">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
background: #f8f8f8 ;
}
hr{
border: 1px solid black;
margin-top: 0;
}
form{
font-size: 18px;
}
.btn,.btn-primary{
font-size: 18px;
font-weight: bold;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: