"Bootstrap profile form by prakhar"
Bootstrap 3.3.0 Snippet by prakhar

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="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Cinzel" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans" rel="stylesheet">
<link href=" https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.1.1/min/dropzone.min.css" rel="stylesheet">
<div class="col-md-6 col-md-offset-3">
<div class="panel">
<div class="panel-body">
<div class="profile-layout">
<div class="profile-section">
<div class="profile-img-section">
<img src="https://lh3.googleusercontent.com/-vMhoOKQaJWA/Vwyk_X8wazE/AAAAAAAAFXI/WGb-BrDr_m45C2IEdgpTJ7Zrzmb8yeccgCHMYCg/FirstDayAtSchool?imgmax=160&crop=1" class="img-responsive profile-img">
</div>
<div class="text-information">
<h2 class="main-name">Kalemon School</h2>
<h5 class="email-info">Schooladm@gmail.com</h5>
</div>
<div class="tab-section">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#home" ><i class="fa fa-info-circle fa-lg"></i></a></li>
<li><a data-toggle="tab" href="#menu1"><i class="fa fa-users fa-lg"></i></a></li>
<li><a data-toggle="tab" href="#menu2"><i class="fa fa-key fa-lg"></i></a></li>
<li><a data-toggle="tab" href="#menu3"><i class="fa fa-picture-o fa-lg"></i></a></li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane fade in active">
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
.profile-layout .profile-section .main-name,.profile-layout .profile-section .email-info{
text-align:center;
margin:0;
}
.profile-layout{
min-height:200px;
border:1px solid #dadada;
}
.profile-layout .profile-section .main-name{
margin-top:10px;
margin-bottom:10px;
font-family: 'Cinzel', serif;
}
.profile-layout .profile-img-section{
height:300px;
position:relative;
padding:20px 10px 20px 10px !important;
background:#fbfbfb;
background: #dae2f8; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #dae2f8, #d6a4a4); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #dae2f8, #d6a4a4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: #4ca1af; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #4ca1af, #c4e0e5); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #4ca1af, #c4e0e5);
background: #1d2b64; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #1d2b64, #f8cdda); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #1d2b64, #f8cdda);
}
.profile-layout .profile-img-section .profile-img{
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
width:200px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$(document).ready(function(){
$("#edit-info").on("click",function(){
$(".info-section").removeClass("no-edit-forms");
$(this).hide();
$("#cancel-info").removeClass("hide");
});
$("#cancel-info").on("click",function(){
window.location.reload();
});
$(".upload-image").dropzone();
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: