"Student Registration Form"
Bootstrap 4.1.1 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/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/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 ---------->
<header>
<h2>Student Registration</h2>
</header>
<main>
<div class="container shadow mt-5 p-3 ">
<h3><span class="badge badge-primary mt-1">Student Registration Form</span></h3>
<form action="/action_page.php" class="needs-validation" novalidate>
<div class="form-row mx-3">
<div class="col-md-6 mb-3 font-weight-bold">
<label for="fname" class="required">First Name</label>
<input type="text" class="form-control" id="fname" placeholder="Enter Firstname" name="fname"
required>
<div class="invalid-feedback">First name is required.</div>
</div>
<div class="col-md-6 mb-3 font-weight-bold">
<label for="lname" class="required">Last Name</label>
<input type="text" class="form-control" id="lname" placeholder="Enter Lastname" name="lname"
required>
<div class="invalid-feedback">Last name is required.</div>
</div>
<div class="col-md-6 mb-3 font-weight-bold">
<label for="pwd" class="required">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Enter Password" name="pwd"
required>
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
header{
position: fixed-top;
background-color:rgb(213, 244, 244);
padding: 15px;
}
h2{
color: rgb(15, 15, 144);
text-align: center;
}
.container{
background-color:rgb(225, 247, 252);
border-radius: 30px;
}
h3{
text-align: center;
}
footer{
position: relative;
bottom: 0;
left: 0;
width:100%;
background-color:rgb(213, 244, 244);
line-height:18px;
font-weight: 600;
color: rgb(156, 16, 16);
text-align: center;
padding: 10px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: