"user form 2"
Bootstrap 3.3.0 Snippet by Qamarabbas

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 ---------->
<div class="profile-container container">
<div class="row">
<ol class="breadcrumb">
<li><a href="#">My Profile</a></li>
<li class="active"><a href="#">Edit Profile</a></li>
</ol>
</div>
<div class="profile-form-0">
<div class="row profile-form">
<form action="" class="">
<!-- first column -->
<div class="col-md-6 col-sm-6 col-lg-6 ">
<div class="form-group form-img">
<img src="https://via.placeholder.com/150" class=" img-rounded img-responsive " alt="">
<input type="file" class="form-control">
</div>
<div class="col-md-6 ">
<div class="form-group">
<label for="">First name</label>
<input type="text" class="form-control">
</div>
</div>
<div class="col-md-6 ">
<div class="form-group">
<label for="">Last name</label>
<input type="text" class="form-control">
</div>
</div>
<div class="form-group ">
<label for="">Password</label>
<input type="password" class="form-control">
<a href="">Change Password</a>
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 */
.profile-container{
background:gainsboro;
height:100vh;
padding: 4em;
width: 90%;
height: auto;
margin-top: 1em;
}
.profile-container .profile-form form img{
border: 1px solid var(--light-blue);
height: 40vh;
width: 40vh;
padding: 0;
margin-right: 40%;
margin-left:35%;
}
.profile-container .profile-form form .form-group input[type="file"]{
border:none;
padding: .5em;
background:transparent;
}
.profile-container .profile-form .dob{
display:flex;
justify-content: space-between;
}
.profile-container .profile-form form .col-md-6{
padding-left:0;
}
.profile-form-0{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: