robotec/vistas/usuario.php
2024-11-21 18:53:54 -06:00

136 lines
4.7 KiB
PHP

<?php
//activamos almacenamiento en el buffer
ob_start();
session_start();
if (!isset($_SESSION['nombre'])) {
header("Location: login.html");
}else{
require 'header.php';
if ($_SESSION['acceso']==1) {
?>
<div class="content-wrapper">
<!-- Main content -->
<section class="content">
<!-- Default box -->
<div class="row">
<div class="col-md-12">
<div class="box">
<div class="box-header with-border">
<h1 class="box-title">Usuarios <button class="btn btn-success" onclick="mostrarform(true)" id="btnagregar"><i class="fa fa-plus-circle"></i>Agregar</button></h1>
<div class="box-tools pull-right">
</div>
</div>
<!--box-header-->
<!--centro-->
<div class="panel-body table-responsive" id="listadoregistros">
<table id="tbllistado" class="table table-striped table-bordered table-condensed table-hover">
<thead>
<th>Opciones</th>
<th>Nombre</th>
<th>Documento</th>
<th>Numero Documento</th>
<th>Telefono</th>
<th>Email</th>
<th>Login</th>
<th>Foto</th>
<th>Estado</th>
</thead>
<tbody>
</tbody>
<tfoot>
<th>Opciones</th>
<th>Nombre</th>
<th>Documento</th>
<th>Numero Documento</th>
<th>Telefono</th>
<th>Email</th>
<th>Login</th>
<th>Foto</th>
<th>Estado</th>
</tfoot>
</table>
</div>
<div class="panel-body" id="formularioregistros">
<form action="" name="formulario" id="formulario" method="POST">
<div class="form-group col-lg-12 col-md-12 col-xs-12">
<label for="">Nombre(*):</label>
<input class="form-control" type="hidden" name="idusuario" id="idusuario">
<input class="form-control" type="text" name="nombre" id="nombre" maxlength="100" placeholder="Nombre" required>
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Tipo Documento(*):</label>
<select name="tipo_documento" id="tipo_documento" class="form-control select-picker" required>
<option value="Numero De Control">Numero De Control</option>
</select>
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Numero de Documento(*):</label>
<input type="text" class="form-control" name="num_documento" id="num_documento" placeholder="Numero de Control" maxlength="20">
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Direccion</label>
<input value="Chihuahua,Chih" class="form-control" type="text" name="direccion" id="direccion" maxlength="70">
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Telefono</label>
<input class="form-control" type="text" name="telefono" id="telefono" maxlength="20" placeholder="Número de telefono">
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Email: </label>
<input class="form-control" type="email" name="email" id="email" maxlength="70" placeholder="email">
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Cargo</label>
<input class="form-control" type="text" name="cargo" id="cargo" maxlength="20" placeholder="Cargo">
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Login(*):</label>
<input class="form-control" type="text" name="login" id="login" maxlength="20" placeholder="nombre de usuario" required>
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Contraseña(*):</label>
<input class="form-control" type="password" name="clave" id="clave" maxlength="64" placeholder="Contraseña">
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label>Permisos</label>
<ul id="permisos" style="list-style: none;">
</ul>
</div>
<div class="form-group col-lg-6 col-md-6 col-xs-12">
<label for="">Imagen:</label>
<input class="form-control" type="file" name="imagen" id="imagen">
<input type="hidden" name="imagenactual" id="imagenactual">
<img src="" alt="" width="150px" height="120" id="imagenmuestra">
</div>
<div class="form-group col-lg-12 col-md-12 col-sm-12 col-xs-12">
<button class="btn btn-primary" type="submit" id="btnGuardar"><i class="fa fa-save"></i> Guardar</button>
<button class="btn btn-danger" onclick="cancelarform()" type="button"><i class="fa fa-arrow-circle-left"></i> Cancelar</button>
</div>
</form>
</div>
<!--fin centro-->
</div>
</div>
</div>
<!-- /.box -->
</section>
<!-- /.content -->
</div>
<?php
}else{
require 'noacceso.php';
}
require 'footer.php';
?>
<script src="scripts/usuario.js"></script>
<?php
}
ob_end_flush();
?>