Herramienta para Administrar Usuarios

  • Autor Autor richi0417
  • Fecha de inicio Fecha de inicio
richi0417

richi0417

Delta
¡Ha verificado su Paypal!
hola ando necesitando un script para control de usuarios que me permita registrar usuarios y luego como administrador realizar búsquedas filtrar añadir roles y si deseo exportar ciertos usuarios a un excel o un PDF saben donde podre conseguir uno similar?


gracias
 
Mira te dejo este para control de usuarios crear nuevo y eso espero y te sirva amigo

MIRA TE DEHO ESTE PARA USUARIOS PARA QUE LOS CONTROLES Y YA SOLO EJECUTARIAS UNA BUSQUEDA PAR A QUE AGREGUES A USUARIOS

Insertar CODE, HTML o PHP:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Adexso-prueba-gadget.html</title>
</head>
<body>

<div style="background-color:#eeeeee">
<H1 style="color:#00005f;text-indent:20px" align="left"> Creación de Documentos </H1>

</div>
<div style="background-color:#696969">
<h2> Creación del ID del proyecto</h2>

<SCRIPT LANGUAGE="JavaScript">
function mostrarFechaHora()
{
var fecha
fecha=new Date();
document.write('Hoy es ');
document.write(fecha.getDate()+'/');
document.write((fecha.getMonth()+1)+'/');
document.write(fecha.getYear());
document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs p;');
document.write('Es la hora ');
document.write(fecha.getHours()+':');
document.write(fecha.getMinutes()+':');
document.write(fecha.getSeconds());
}
//Llamada a la función
mostrarFechaHora();
</SCRIPT>

<SCRIPT LANGUAGE="JavaScript">
function mostrarFechaAño()
{
var fecha
fecha=new Date();
document.write(fecha.getYear());
}
//Llamada a la función
mostrarFechaAño();
</SCRIPT>

<script type="text/javascript">
function cambiarFase()
{
document.form1.text1.value = document.form1.select1.options[document.form1.select1.selectedIndex].text;
document.form1.text2.value = document.form1.select1.options [document.form1.select1.selectedIndex].value;
}
function cambiarCliente()
{
document.form1.text3.value = document.form1.select2.options[document.form1.select2.selectedIndex].text;
document.form1.text4.value = document.form1.select2.options [document.form1.select2.selectedIndex].value;
}
</script>
<script language="JavaScript">
function writePage(form)
{
var page
page += "<html><head><title>A Dynamic Page</title></head>";
page += "<body><H1>Creación de Documentos (dynamic page)</H1>";
page += "<p>Bienvenido " + "&nbsp;&nbsp;" + form.nombre.value + "&nbsp;&nbsp;" + form.apellido.value + "<br><br>";
page += "Llevas acabo el proyecto:" + "&nbsp;&nbsp;" + form.proyecto.value + "<br><br>";
page += "El ID del documento es:<br><br>";
page += "<b>ADX" + "-" + form.text2.value + "-" + form.text4.value + "-2008";
page += "</body></html>";
document.write(page);
}
</script>

<form name="form1"> <!-- onsubmit="return false"> -->
<p>Ingrese su nombre:&nbsp;
<input type="text" name="nombre" id="nombre" /></p>
<p>Ingrese su apellido:&nbsp;

<input type="text" name="apellido" id="name" /></p>
<p>Ingrese el nombre del proyecto:&nbsp;
<input type="text" name="proyecto" id="name" /></p>
<p>Ingrese la fase del proyecto:&nbsp;&nbsp;
<select size="1" name="select1" onChange="cambiarFase()">
<option value="000">Requisitos</option>
<option value="001">Análisis</option>
<option value="012">Diseño</option>
<option value="123">Implementación</option>
<option value="456">Prueba</option>

</select>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Texto seleccionado:<input type="text" name="text1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Valor asociado:<input type="text" name="text2"><br></p>
<p>Ingrese el Cliente:&nbsp;&nbsp;
<select size="1" name="select2" onChange="cambiarCliente()">
<option value="701">profeco</option>
<option value="702">profeco</option>
<option value="703">profeco</option>
<option value="704">profeco</option>

<option value="705">profeco</option>
</select>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Texto seleccionado:<input type="text" name="text3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Valor asociado:<input type="text" name="text4"><br></p>
<input type="button" value="&nbsp;&nbsp;&nbsp; Crear &nbsp; ID &nbsp;&nbsp;&nbsp;" onclick="writePage(this.form);"/>
<br><br />
</form>
</div>
<!-- <hr color="#778899" width="70%" size="6%"/> -->
<div style="background-color:#eeeeee">
<!-- <hr />-->
</p></div>
</body>

</html>
 
Última edición:
Atrás
Arriba