Commit d9f8f3a956661d2e3f43b76986729d9600b95507

Authored by Greyce Medeiros
1 parent 2111e7cd
Exists in master

Inserindo mais alteracoes

index/index.php
... ... @@ -72,6 +72,7 @@ include("../inc/topo.php");
72 72  
73 73 <div id="campos">
74 74  
  75 +
75 76 <table width="80%">
76 77 <tr>
77 78  
... ... @@ -82,7 +83,7 @@ include(&quot;../inc/topo.php&quot;);
82 83 <span class="labelLogin"><label id="login">Usuário: </label> </span>
83 84 </td>
84 85 <td>
85   - <span class="inputLogin"><input type="text" name="login" maxlength="20"> </span>
  86 + <span class="inputLogin"><input type="text" name="login" maxlength="20" id="login" > </span>
86 87 </td>
87 88 </tr>
88 89 <tr>
... ... @@ -90,7 +91,7 @@ include(&quot;../inc/topo.php&quot;);
90 91 <span class="labelLogin"><label id="Senha">Senha: </LABEL> </span>
91 92 </td>
92 93 <td>
93   - <span class="inputLogin"><input type="password" name="password" maxlength="100"> </span>
  94 + <span class="inputLogin"><input type="password" name="password" maxlength="100" id="password" > </span>
94 95 </td>
95 96 </tr>
96 97 <?php if ($usarecap) { ?>
... ...
restrito/alterasenha/index.php
... ... @@ -12,22 +12,30 @@
12 12  
13 13 include("../inc/topo.php");
14 14 ?>
  15 +<div role="main" class="col-md-8">
15 16 <h1>Redefinição de Senha</h1>
16 17 <br><br>
17 18 <form action="index.php" id="formulario" method="post">
18 19 <table id="tabelaSolucaoCidada" align="center" cellpadding="0" cellspacing="1">
  20 + <div class="form-group">
19 21 <tr>
20   - <td><b>Senha atual:</b></td>
21   - <td><input type="password" name="senhaatual" size="50" maxlength="50" /> </td>
  22 + <td> <label for="inputName"><b>Senha atual:</b></label></td>
  23 + <td><input type="password" name="senhaatual" size="50" maxlength="50" class="form-control" id="senhaatual" /> </td>
22 24 </tr>
  25 + </div>
  26 + <div class="form-group">
23 27 <tr>
24   - <td><b>Nova senha:</b></td>
25   - <td><input type="password" name="novasenha" size="50" maxlength="50" /> </td>
  28 + <td> <label for="inputName"><b>Nova senha:</b></label></td>
  29 + <td><input type="password" name="novasenha" size="50" maxlength="50" name="Novasenha" id="novasenha" /> </td>
26 30 </tr>
  31 + </div>
  32 + <div class="form-group">
27 33 <tr>
28   - <td><b>Confirme a nova senha:</b></td>
29   - <td><input type="password" name="confirmasenha" size="50" maxlength="50" /> </td>
30   - </tr>
  34 + <td> <label for="inputName"><b>Confirme a nova senha:</b></label></td>
  35 + <td><input type="password" name="confirmasenha" size="50" maxlength="50" name="confirmenovasenha" id="confirmenovanovasenha" /> </td>
  36 + </tr>
  37 + </div>
  38 +
31 39 <tr><td colspan="2"><td></tr>
32 40 <tr>
33 41 <td colspan="2" align="center" style="border-top:1px solid #000000">
... ... @@ -35,8 +43,8 @@
35 43 </td>
36 44 </tr>
37 45 </table>
38   -
39 46 </form>
  47 +</div>
40 48 <?php
41 49 getErro($erro);
42   -include("../inc/rodape.php");?>
43 50 \ No newline at end of file
  51 +include("../inc/rodape.php");?>
... ...
restrito/index/index.php
... ... @@ -79,22 +79,32 @@ include(&quot;../inc/topo.php&quot;);
79 79  
80 80 <div id="campos">
81 81 <table cellpadding="1" cellspacing="5" width="80%">
  82 + <div class="form-group">
82 83 <tr align="right">
83 84 <td>
84 85 <span class="labelLogin"><label for="login">Usuário: </label> </span>
85   - </td>
  86 +
  87 + </td>
86 88 <td>
87   - <span class="inputLogin"><input type="text" name="login" maxlength="20"> </span>
  89 + <span class="inputLogin"><input type="text" name="login" maxlength="20" id="login"> </span>
  90 +
88 91 </td>
89 92 </tr>
  93 + </div>
  94 +
  95 + <div class="form-group">
90 96 <tr align="right">
91 97 <td>
92   - <span class="labelLogin"><label for="Senha">Senha: </LABEL> </span>
  98 + <span class="labelLogin"><label for="Senha">Senha: </LABEL> </span>
93 99 </td>
94 100 <td>
95   - <span class="inputLogin"><input type="password" name="password" maxlength="100"> </span>
  101 + <span class="inputLogin"><input type="password" name="password" maxlength="100" id="password" > </span>
96 102 </td>
97 103 </tr>
  104 + </div>
  105 +
  106 +
  107 +
98 108 <?php if ($usarecap) { ?>
99 109 <tr>
100 110 <td colspan="2" align="right">
... ... @@ -110,7 +120,7 @@ include(&quot;../inc/topo.php&quot;);
110 120 <td>
111 121 </td>
112 122 <td>
113   - <br><input type="submit" class="inputBotao" name="btsub" value="Entrar">
  123 + <br><input type="submit" class="inputBotao" name="btsub" class="btn btn-default" value="Entrar">
114 124 </td>
115 125 </tr>
116 126 </table>
... ...