Feat: \n 1. Contact Us page form submission success page created. \n 2. Contact Us page styling and CAPTCHA text content. \n 3. Removal of ERP, Google CAPTCHA, and ALTCHA API code and left over comments in JavaScript, Python.

This commit is contained in:
2025-03-16 16:56:15 +00:00
parent 4add7e626e
commit dd608022cd
68 changed files with 597 additions and 3921 deletions

View File

@@ -4,19 +4,23 @@
}
.contact-form {
max-width: 800px;
max-width: 60vw;
width: fit-content;
margin: 0 auto;
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.contact-form textarea {
max-width: 40vw;
}
.form-grid {
display: grid;
grid-template-columns: 200px 1fr;
gap: 1.5rem;
margin-bottom: 1.5rem;
margin-bottom: 1rem;
}
.form-label {
@@ -36,13 +40,32 @@ textarea.form-input {
min-height: 120px;
}
.marketing-consent {
margin: 2rem 0;
padding-left: 200px;
.marketing-consent input {
display: inline-block;
margin-left: 18vw;
margin-bottom: 1.25rem;
}
.container.recaptcha {
.container.captcha > div:first-child {
margin-left: 15vw;
margin-right: 15vw;
}
.container.captcha > div:first-child > label:first-child {
display: flex;
justify-content: center;
}
.container.captcha > p:last-child{
font-size: 0.9rem;
margin: 1vh 0;
}
.container.captcha .altcha-main {
padding-left: 1rem;
padding-top: 0.75rem;
padding-bottom: 0;
}
.container.captcha .altcha-main > :last-child {
display: none;
}
input[type="submit"] {
@@ -73,7 +96,17 @@ input[type="submit"]:hover {
font-size: 1.1rem;
}
.data-notice ul li {
list-style-position: inside;
}
@media (max-width: 768px) {
.contact-form {
max-width: 80vw;
}
.contact-form textarea {
max-width: 60vw;
}
.form-grid {
grid-template-columns: 1fr;
gap: 0.5rem;

View File

@@ -31,6 +31,7 @@ body {
top:
}
*/
.button {
display: inline-block;
padding: 0.75rem 1.5rem;

File diff suppressed because one or more lines are too long