<input type="text" name="direccion" size="70" maxlength="70" value="<?php isset($data['persona']['direccion']) ? HelperFunctions::mostrarDatos($data['persona'], 'direccion') : ""; ?> " autofocus><br> <?php if (isset($data['errores']['direccion'])) { HelperFunctions::mostrarErrores($data['errores']['direccion']); } ?> </p> <p> <label for "provincia">Provincia:</label> <select name="provincia"> <?php HelperFunctions::optionList($data['provincialist'], 'nombre', false, $data['persona']['provincia']); ?> </select><br/> </p> <p> <label for "nif">DNI/NIE:</label> <input type="text" name="nif" maxlength="11" value="<?php isset($data['persona']['nif']) ? HelperFunctions::mostrarDatos($data['persona'], 'nif') : ""; ?> " autofocus><br> <?php if (isset($data['errores']['nif'])) { HelperFunctions::mostrarErrores($data['errores']['nif']); } ?>
<?php if (isset($data['errores']['fecha_prevista'])) { HelperFunctions::mostrarErrores($data['errores']['fecha_prevista']); } ?> <label for="fecha_prevista">Fecha Prevista(YYYY-MM-DD)</label><br/> <input type="date" name="fecha_prevista" value="<?php if (isset($data['proyecto'])) { HelperFunctions::mostrarDatos($data['proyecto'], 'fecha prevista'); } ?> "><br/> <label for="estado">Estado</label><br/> <select name="estado"> <?php HelperFunctions::optionList($data['estadolist'], 'descripcion', false, $data['estado_selected']); ?> </select><br> <input type="submit" value="<?php echo $data['submit']; ?> "> </form> <br/> <a href="<?php echo URL . 'proyecto'; ?> ">Atrás</a> </div>
<!--<?php if (isset($data['errores']['pass2'])) { HelperFunctions::mostrarErrores($data['errores']['pass2']); } ?> --> </p> <?php } ?> <p> <label for "categoria">Categoria del usuario:</label> <select name="categoria"> <?php HelperFunctions::optionList($data['categorialist'], 'nombre', false, isset($data['categoria_selected']) ? $data['categoria_selected'] : null); ?> </select><br/> </p> <p><!-- fichero --> <input type="hidden" name="MAX_FILE_SIZE" value="2097152"> <label for="img">Imagen de perfil: (MAX: 2MB)</label> <input type="file" name="img" id="" accept="image/*" autofocus> </p> <p> <input type="submit" name="usuario" value="<?php echo $data['submit']; ?> "> </p>