-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductos_propietario.php
131 lines (116 loc) · 5.16 KB
/
productos_propietario.php
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!-- agregamos el header -->
<?php
include "includes/header.html"
?>
<div id="carousel-boxapp" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<!-- <ol class="carousel-indicators">-->
<!-- <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>-->
<!-- <li data-target="#carousel-example-generic" data-slide-to="1"></li>-->
<!-- <li data-target="#carousel-example-generic" data-slide-to="2"></li>-->
<!-- </ol>-->
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="public/images/bck6.jpg" alt="">
<div class="carousel-caption carousel-caption-boxapp2">
<h3 class="text-uppercase"> <b style="color:#029eff">Especialistas Tecnológicos!</b> somos un equipo de personas jóvenes dedicadas a cumplir las metas propuestas por los clientes.</h3>
</div>
</div>
<div class="item">
<video autoplay loop>
<source src="public/video/background_video.mp4" type="video/mp4">
</video>
<!-- <img src="" alt="...">-->
<div class="carousel-caption carousel-caption-boxapp2">
<h3 class="text-uppercase"><b style="color:#029eff">Nuestro objetivo</b> es lograr integrar las tecnologías al mercado, al común diario y a las personas; para así poder entregar más herramientas de desarrollo al país.</h3>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-boxapp" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-boxapp" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!--<div class="principal-container">-->
<!-- <div class="first-banner">-->
<!-- <h1>Boxapp</h1>-->
<!-- <h3>Lorem Ipsum</h3>-->
<!-- </div>-->
<!--</div>-->
<div class="container-fluid div-erp" id="erpdiv">
<!-- agregamos el form -->
<?php
include "erp_form.php";
include "erp_carac_model.html";
?>
<div class="container erp-text text-center">
<h1 class="text-uppercase">Boxapp ERP</h1>
<h3>Administra y Gestiona tu Empresa con Nuestro Software Desarrollado a tus Necesidades</h3>
<button class="btn btn-lg btn-boxapp-black" data-toggle="modal" data-target="#modalErp">Contacta con Nosotros</button>
<button class="btn btn-lg btn-boxapp-transparent" data-toggle="modal" data-target="#modal-erp-carac">Ver Características</button>
</div>
</div>
<div class="container div-tecno" id="tecnologia">
<div class="col-md-12">
<h1 class="text-center text-uppercase">Tecnologías</h1>
<ul class="gallery content-slider slider-tec">
<li>
<img src="public/images/phplogo.png" class="img-responsive" height="200" width="200">
</li>
<li>
<img src="public/images/android-logo.jpg" class="img-responsive" height="200" width="200">
</li>
<li>
<img src="public/images/angularjs-logo.png" class="img-responsive" height="200" width="200">
</li>
<li>
<img src="public/images/java-logo.png" class="img-responsive" height="200" width="200">
</li>
<li>
<img src="public/images/Cplus2.png" class="img-responsive" height="200" width="200">
</li>
<li>
<img src="public/images/net_logo.png" class="img-responsive" height="200" width="200">
</li>
</ul>
</div>
</div>
<div class="container-fluid div-contact" id="contacto">
<h1 class="text-center text-uppercase">Contáctanos</h1>
<form class="text-center contact-form" method="post" action="enviocontacto.php" id="contact-form">
<div class="form-group col-md-6 col-md-offset-3">
<input class="form-control" type="text" name="nombre" placeholder="Nombre">
</div>
<div class="form-group col-md-6 col-md-offset-3">
<input class="form-control" type="text" name="apellido" placeholder="Apellido">
</div>
<div class="form-group col-md-6 col-md-offset-3">
<input class="form-control" type="text" name="asunto" placeholder="Asunto">
</div>
<div class="form-group col-md-6 col-md-offset-3">
<input class="form-control" type="text" name="tlf" placeholder="Teléfono">
</div>
<div class="form-group col-md-6 col-md-offset-3">
<input class="form-control" type="email" name="email" placeholder="Correo Electrónico">
</div>
<div class="form-group col-md-6 col-md-offset-3">
<textarea class="form-control" name="comentarios" rows="5" placeholder="Comentarios..."></textarea>
</div>
<div>
<input type="hidden" value="contact" name="formContact">
</div>
<div class="col-md-12">
<input type="submit" class="btn btn-boxapp btn-lg" name="Enviar Consulta">
</div>
</form>
</div>
<!-- agregamos el footer -->
<?php
include "includes/footer.html"
?>