-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcliente_add.php
More file actions
89 lines (85 loc) · 5.5 KB
/
Copy pathcliente_add.php
File metadata and controls
89 lines (85 loc) · 5.5 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" type="image/x-icon" href="/Lp3/img/avatar_1.png">
<title>LP3</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<?php
@session_start();/*Reanudar sesion*/
require 'menu/css_lte.ctp'; ?><!--ARCHIVOS CSS-->
</head>
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<?php require 'menu/header_lte.ctp'; ?><!--CABECERA PRINCIPAL-->
<?php require 'menu/toolbar_lte.ctp';?><!--MENU PRINCIPAL-->
<div class="content-wrapper">
<div class="content">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="box box-primary">
<div class="box-header">
<i class="ion ion-android-person-add"></i>
<h3 class="box-title">Agregar Clientes</h3>
<div class="box-tools">
<a href="cliente_index.php" class="btn btn-primary pull-right btn-sm" data-title="Volver" rel="tooltip">
<i class="fa fa-arrow-left"></i>
</a>
</div>
</div>
<form action="cliente_control.php" method="post" accept-charset="utf-8" class="form-horizontal">
<div class="box-body">
<input type="hidden" name="vcli_cod" value="0"/>
<input type="hidden" name="accion" value="1"/>
<div class="form-group">
<label class="control-label col-lg-2">C.I N°:</label>
<div class="col-lg-4">
<input type="number" name="vcli_ci" class="form-control" required="" autofocus="" min="1" placeholder="Ingrese el C.I del cliente"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-lg-2">Nombres:</label>
<div class="col-lg-6">
<input type="text" name="vcli_nombre" class="form-control" required="" placeholder="Ingrese el nombre del cliente"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-lg-2">Apellidos:</label>
<div class="col-lg-6">
<input type="text" name="vcli_apellido" class="form-control" required="" placeholder="Ingrese el apellido del cliente"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-lg-2">Teléfono:</label>
<div class="col-lg-4">
<input type="tel" name="vcli_telefono" class="form-control" placeholder="Ingrese el teléfono del cliente" maxlength="15"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-lg-2">Dirección:</label>
<div class="col-lg-6">
<textarea class="form-control" name="vcli_direcc" placeholder="Ingrese la dirección del cliente"></textarea>
</div>
</div>
</div>
<div class="box-footer">
<button type="reset" class="btn btn-default">
<i class="fa fa-remove"></i> Cancelar
</button>
<button type="submit" class="btn btn-primary pull-right">
<i class="fa fa-floppy-o"></i> Guardar
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<?php require 'menu/footer_lte.ctp'; ?><!--ARCHIVOS JS-->
</div>
<?php require 'menu/js_lte.ctp'; ?><!--ARCHIVOS JS-->
</body>
</html>