-
Notifications
You must be signed in to change notification settings - Fork 0
/
box-seguro_alta.php
86 lines (83 loc) · 5.16 KB
/
box-seguro_alta.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
<?php
$MM_authorizedUsers = "administrativo,master";
?>
<?php require_once('inc/security-colorbox.php'); ?>
<div class="divBoxContainer" style="width:94%">
<form name="frmBox" id="frmBox" class="frmBoxMain">
<!-- Seguro -->
<fieldset class="ui-widget ui-widget-content ui-corner-all">
<legend class="ui-widget ui-widget-header ui-corner-all">Seguro</legend>
<p>
<label for="box-seguro_nombre">Nombre *</label>
<input type="text" name="box-seguro_nombre" id="box-seguro_nombre" maxlength="255" class="ui-widget-content" style="width:220px" />
</p>
<p>
<label for="box-seguro_email_siniestro">E-mail Siniestro</label>
<input type="text" name="box-seguro_email_siniestro" id="box-seguro_email_siniestro" maxlength="255" class="ui-widget-content" style="width:220px" placeholder="Separados por coma" />
</p>
<p>
<label for="box-seguro_email_emision">E-mail Emisión/MC</label>
<input type="text" name="box-seguro_email_emision" id="box-seguro_email_emision" maxlength="255" class="ui-widget-content" style="width:220px" placeholder="Separados por coma" />
</p>
<p>
<label for="box-seguro_email_emision_vida">E-mail Emisión Vida</label>
<input type="text" name="box-seguro_email_emision_vida" id="box-seguro_email_emision_vida" maxlength="255" class="ui-widget-content" style="width:220px" placeholder="Separados por coma" />
</p>
<p>
<label for="box-seguro_email_patrimoniales_otras">E-mail Otros Riesgos</label>
<input type="text" name="box-seguro_email_patrimoniales_otras" id="box-seguro_email_patrimoniales_otras" maxlength="255" class="ui-widget-content" style="width:220px" placeholder="Separados por coma" />
</p>
<p>
<label for="box-seguro_email_endosos">E-mail Endosos</label>
<input type="text" name="box-seguro_email_endosos" id="box-seguro_email_endosos" maxlength="255" class="ui-widget-content" style="width:220px" placeholder="Separados por coma" />
</p>
<p>
<label for="box-seguro_email_rastreador">E-mail Rastreador</label>
<input type="text" name="box-seguro_email_rastreador" id="box-seguro_email_rastreador" maxlength="255" class="ui-widget-content" style="width:220px" placeholder="Separados por coma" />
</p>
<p>
<label for="box-seguro_email_fotos">E-mail Fotos</label>
<input type="text" name="box-seguro_email_fotos" id="box-seguro_email_fotos" maxlength="255" class="ui-widget-content" style="width:220px" placeholder="Separados por coma" />
</p>
<p>
<label for="box-seguro_email_inspeccion">E-mail Inspección</label>
<input type="text" name="box-seguro_email_inspeccion" id="box-seguro_email_inspeccion" maxlength="255" class="ui-widget-content" style="width:220px" placeholder="Separados por coma" />
</p>
<p>
<label for="box-seguro_cuit">CUIT</label>
<input type="text" name="box-seguro_cuit" id="box-seguro_cuit" maxlength="15" class="ui-widget-content" style="width:220px" />
</p>
<p>
<label for="box-seguro_direccion">Dirección</label>
<input type="text" name="box-seguro_direccion" id="box-seguro_direccion" maxlength="255" class="ui-widget-content" style="width:220px" />
</p>
<p>
<label for="box-seguro_localidad">Localidad</label>
<input type="text" name="box-seguro_localidad" id="box-seguro_localidad" maxlength="255" class="ui-widget-content" style="width:220px" />
</p>
<p>
<label for="box-seguro_cp">Código Postal</label>
<input type="text" name="box-seguro_cp" id="box-seguro_cp" maxlength="15" class="ui-widget-content" style="width:220px" />
</p>
<p>
<label for="box-seguro_flota">Flota</label>
<input type="checkbox" name="box-seguro_flota" id="box-seguro_flota" class="ui-widget-content" />
</p>
<p>
<label for="box-seguro_codigo_lr">Código (L.R.)</label>
<input type="text" name="box-seguro_codigo_lr" id="box-seguro_codigo_lr" maxlength="15" class="ui-widget-content" style="width:220px" />
</p>
</fieldset>
<!-- Acciones -->
<p align="center" style="margin-top:20px">
<input type="hidden" name="box-insert" id="box-insert" value="1" />
<input type="button" name="btnBox" id="btnBox" value="Aceptar" />
</p>
<!-- Nota -->
<p align="center" style="margin-top:10px" class="txtBox">* Campo obligatorio</p>
</form>
<div id="divBoxMessage" class="ui-state-highlight alert-success ui-corner-all divBoxMessage">
<p><span class="ui-icon spnBoxMessage" id="spnBoxIcon"></span>
<span id="spnBoxMessage"></span></p>
</div>
</div>