forked from hiltonbruce/Igreja
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joseilton Costa Bruce
authored and
Joseilton Costa Bruce
committed
Sep 15, 2020
1 parent
9524105
commit c3ea0de
Showing
6 changed files
with
156 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,48 @@ | ||
<div class="bs-callout bs-callout-info" id="callout-type-dl-truncate"> | ||
<h4>Certificado de Batismo</h4> | ||
<form method="post" action="views/secretaria/batismoCertificado.php" target="_blank"> | ||
<p> | ||
<div class="row"> | ||
<div class="col-xs-8"> | ||
<label>Nome:</label> | ||
<input type="text" name='nome' id='estado' class='form-control' | ||
placeholder="Busca no cadastro da Igreja!" value='<?php echo $_GET['nome'];?>' | ||
autofocus='autofocus' tabindex="<?php echo ++$ind;?>"> | ||
</div> | ||
<div class="col-xs-2"> | ||
<label>Rol:</label> | ||
<input type="text" id='detalhe2' class="form-control" placeholder="Nº do membro na igreja" | ||
name='rol' value='<?php echo $_GET['rol'];?>' required='required'> | ||
</div> | ||
<div class="col-xs-6"> | ||
<label>Função e Congregação</label> | ||
<input type="text" class="form-control" id='acesso2'> | ||
</div> | ||
<div class="col-xs-3"> | ||
<label>Data do Batismo</label> | ||
<input type="date" name="dtbatismo" class="form-control" id='id_val2' > | ||
<input type="hidden" name="pastor" value="<?PHP echo strtr( $igSede->pastor(), 'áàãâéêíóõôúüç','aaaaeeiooouuc');?>" > | ||
</div> | ||
<div class="col-xs-1"> | ||
<label>Sexo</label> | ||
<input type="text" name="sexo" class="form-control" id='sexo' placeholder="M ou F" > | ||
</div> | ||
<div class="col-xs-6"> | ||
<label>Secretário:..</label> | ||
<select name="secretario" id="secretario" class="form-control" tabindex="<?PHP echo $ind++;?>"> | ||
<option value="<?PHP echo fun_igreja ($igSede->secretario1());?>"><?PHP echo fun_igreja ($igSede->secretario1());?></option> | ||
<option value="<?PHP echo fun_igreja ($igSede->secretario2());?>"><?PHP echo fun_igreja ($igSede->secretario2());?></option> | ||
</select> | ||
</div> | ||
<div class="col-xs-3"> | ||
<label> </label> | ||
<button type="submit" class="btn btn-primary">Exibir...</button> | ||
</div> | ||
</div> | ||
</p> | ||
</form> | ||
</div> | ||
<script type="text/javascript"> | ||
new Autocomplete("estado", function() { | ||
this.setValue = function( rol,nome,celular,detalhe,sexo ) { | ||
$("#id_val2").val(rol); | ||
$("#nome2").val(nome); | ||
$("#acesso2").val(celular); | ||
$("#detalhe2").val(detalhe); | ||
$("#sexo").val(sexo); | ||
} | ||
if ( this.isModified ) | ||
this.setValue(""); | ||
if ( this.value.length < 1 && this.isNotClick ) | ||
return ; | ||
return "models/autocompBatismo.php?q=" + this.value; | ||
}); | ||
</script> | ||
<form method="post" action="views/secretaria/batismoCertificado.php" target="_blank"> | ||
<p> | ||
<div class="row"> | ||
<table class="table"> | ||
<tr> | ||
<?php | ||
require_once "forms/buscaRecMembro.php"; | ||
?> | ||
</tr> | ||
</table> | ||
<!-- <div class="col-xs-8"> | ||
<label>Nome:</label> | ||
<input type="text" name='nome' id='estado' class='form-control' placeholder="Busca no cadastro da Igreja!" value='<?php echo $_GET['nome']; ?>' autofocus='autofocus' tabindex="<?php echo ++$ind; ?>"> | ||
</div> | ||
<div class="col-xs-2"> | ||
<label>Rol:</label> | ||
<input type="text" id='detalhe2' class="form-control" placeholder="Nº do membro na igreja" name='rol' value='<?php echo $_GET['rol']; ?>' required='required'> | ||
</div> --> | ||
<div class="col-xs-6"> | ||
<label>Função e Congregação</label> | ||
<input type="text" class="form-control" id='acesso2'> | ||
</div> | ||
<div class="col-xs-3"> | ||
<label>Data do Batismo</label> | ||
<input type="date" name="dtbatismo" class="form-control" id='id_val2'> | ||
<input type="hidden" name="pastor" value="<?PHP echo strtr($igSede->pastor(), 'áàãâéêíóõôúüç', 'aaaaeeiooouuc'); ?>"> | ||
</div> | ||
<div class="col-xs-1"> | ||
<label>Sexo</label> | ||
<input type="text" name="sexo" class="form-control" id='sexo' placeholder="M ou F"> | ||
</div> | ||
<div class="col-xs-6"> | ||
<label>Secretário:..</label> | ||
<select name="secretario" id="secretario" class="form-control" tabindex="<?PHP echo $ind++; ?>"> | ||
<option value="<?PHP echo fun_igreja($igSede->secretario1()); ?>"><?PHP echo fun_igreja($igSede->secretario1()); ?></option> | ||
<option value="<?PHP echo fun_igreja($igSede->secretario2()); ?>"><?PHP echo fun_igreja($igSede->secretario2()); ?></option> | ||
</select> | ||
</div> | ||
<div class="col-xs-3"> | ||
<label> </label> | ||
<button type="submit" class="btn btn-primary">Exibir...</button> | ||
</div> | ||
</div> | ||
</p> | ||
</form> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div class="login"> | ||
<figure class="highlight text-center"> | ||
<h3 class="text-center"><?php echo NOMESYS; ?></h3> | ||
<!-- <img data-holder-rendered="true" src="img/Eliu.png" style="width: 50%;" alt="Logo Eliu"> --> | ||
<img data-holder-rendered="true" src="img/Eliu.png" style="width: 50%;" alt="Logo Eliu"> | ||
<h3 class="text-center"><?php //echo NOMESYS; ?></h3> | ||
<pre> | ||
<pre> | ||
<h5>Fazer login para prosseguir</h5> | ||
|
@@ -31,7 +31,7 @@ | |
<div class="item active"> | ||
<img data-holder-rendered="true" src="img/debian.png" alt="900x500" width="333" data-src="holder.js/900x500/auto/#666:#666"> | ||
<div class="carousel-caption"> | ||
<h3>Joseilton Costa Bruce</h3> | ||
<h4>Joseilton Costa Bruce</h4> | ||
<p>[email protected]</p> | ||
</div> | ||
</div> | ||
|