Skip to content

Commit

Permalink
Update form.html
Browse files Browse the repository at this point in the history
  • Loading branch information
alexccastelo authored Jan 15, 2024
1 parent c761935 commit cef790e
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions templates/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,20 @@
border-radius: 4px;
cursor: pointer;
}

input[type=reset] {
background-color: #800101;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}

input[type=reset]:hover {
background-color: #720000;
}
h2 {
text-align: center;
}
Expand Down Expand Up @@ -60,4 +69,4 @@ <h2>Gerador de Senhas_</h2>
<p>Sua senha é: {{ password }}</p>

</body>
</html>
</html>

0 comments on commit cef790e

Please sign in to comment.