"Cliente existente"
Bootstrap 3.3.0 Snippet by jordonez

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 ---------->
<br/>
<div class="container">
<!-- PANEL DATOS CLIENTES -->
<div class="row">
<div class="panel panel-primary">
<div class="panel-heading">
<h4 class="panel-title">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
<a data-toggle="collapse" href="#collapse0"> Datos del cliente <span class="glyphicon glyphicon-chevron-up pull-right"></span></a>
</h4>
</div>
<div id="collapse0" class="panel-collapse collapse in">
<div class="panel-body">
<form class="form-horizontal">
<fieldset>
<div class="row">
<div class="col-md-6">
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="textinput">Nro. Documento</label>
<div class="col-md-4">
<input id="textinput" name="textinput" type="text" placeholder="" class="form-control input-sm">
</div>
</div>
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
.error-notice {
margin: 2px 2px; /* Making sure to keep some distance from all side */
}
.oaerror {
width: 100%; /* Configure it fit in your design */
margin: 0 auto; /* Centering Stuff */
background-color: #FFFFFF; /* Default background */
padding: 10px;
border: 1px solid #eee;
border-left-width: 2px;
border-radius: 3px;
margin: 0 auto;
font-family: 'Open Sans', sans-serif;
font-size: 12px;
}
.danger {
border-left-color: #d9534f; /* Left side border color */
background-color: rgba(217, 83, 79, 0.1); /* Same color as the left border with reduced alpha to 0.1 */
}
.danger strong {
color: #d9534f;
}
.warning {
border-left-color: #f0ad4e;
background-color: rgba(240, 173, 78, 0.1);
}
.warning strong {
color: #f0ad4e;
}
.info {
border-left-color: #5bc0de;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
$(function () {
$('[data-toggle="popover"]').popover()
})
$('.popover-dismiss').popover({
trigger: 'focus'
})
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: