Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
6eero authored May 26, 2024
1 parent 5702cde commit 811e747
Showing 1 changed file with 31 additions and 27 deletions.
58 changes: 31 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,17 +198,7 @@
background-color: #211f26;
border-radius: 10px;
padding: 20px;
margin-top: 0px;
/* Ridimensionato il margine superiore */
margin-bottom: 0px;
/* Ridimensionato il margine inferiore */
}

.form-container form {
margin: 0;
/* Rimuove i margini predefiniti del form */
padding: 0;
/* Rimuove i padding predefiniti del form */
}

.form-container label,
Expand All @@ -235,18 +225,32 @@
color: #141218;
cursor: pointer;
margin-top: 30px;
/* Aggiunto margine sopra il bottone */
margin-left: auto;
/* Allinea il bottone a destra */
margin-right: auto;
/* Allinea il bottone a sinistra */
display: block;
/* Per centrare il bottone */
}

.form-container input[type="submit"]:hover {
background-color: #BAA9F7;
}

.form-container button[type="submit"] {
display: inline-block;
padding: 10px 20px;
margin: 10px;
background-color: #CDBDFA;
/* colore di sfondo */
color: #141218;
/* colore del testo */
text-decoration: none;
border-radius: 5px;
border: none;
/* rimuove il bordo */
cursor: pointer;
}

.form-container button[type="submit"]:hover {
background-color: #BAA9F7;
/* colore di sfondo al passaggio del mouse */
}
</style>
</head>

Expand Down Expand Up @@ -311,27 +315,27 @@ <h2>Download</h2>
<div class="content" id="contribute">
<h2>Contribute or Contact us Securely</h2>
<p>If you're interested in contributing to the ongoing development of the NewPass project or want to report any bugs you encounter, we've provided comprehensive guidelines in the <a href="https://github.com/6eero/NewPass/blob/master/CONTRIBUTING.md"
target="_blank">CONTRIBUTING.md</a> file.
target="_blank">CONTRIBUTING.md</a> file.</p>
</div>

<div class="content" id="contribute">
<h3>Contact us Securely</h3>
<p>If you discover a vulnerability in our project, please follow these steps to report it:<br> *PGP coming soon*</p>


<br><br>
<h3>Contact us Securely</h3>
<p>We take security issues seriously. If you discover a vulnerability in our project, please follow these steps to report it:<br> *PGP coming soon*</p>


<div class="container">
<div class="form-container">

<form action="https://formsubmit.co/4ecb21d0fc7ae049a568134516fc5174" method="POST">
<form action="https://formsubmit.co/[email protected]" method="POST">
<input type="text" name="Name" placeholder="Full Name" required>
<input type="email" name="Email" placeholder="Email" required>
<textarea name="Message" placeholder="Message" required></textarea>
<button type="submit">Send</button>
</form>

</div>
</div>


</p>
</div>

Expand Down

0 comments on commit 811e747

Please sign in to comment.