White House ERA Petition

 

 

Petition to Pass the ERA

“In everything we do, my administration will be inspired by a strong pursuit of excellence and unrelenting success. We will not forget our country, we will not forget our Constitution, and we will not forget our God.”
President Donald J. Trump – January 20, 2025

Fields marked with an * are required.
4000 characters allowed

Petition to Pass the Equal Rights Amendment

Organized by Katrina’s Dream
Contact: Helene de Boissiere-Swanson, Founder & Executive Director | deboissiere@gmail.com | +1 (415) 233-2048 | Astoria, NY

To the President of the United States:

We, the undersigned, respectfully call upon the White House to urge the United States Congress to take immediate action to pass and ratify the Equal Rights Amendment (ERA). The ERA is essential to enshrine gender equality in the U.S. Constitution, ensuring that all individuals are protected from discrimination on the basis of sex.

Despite its introduction in 1923 and passage by Congress in 1972, the ERA has yet to be fully ratified and added to the Constitution. With the necessary 38 state ratifications achieved, we urge swift action to remove any remaining barriers and formalize this critical amendment.

We ask the White House to champion this cause, advocating for equality and justice by pressing Congress to act without delay. The time for the ERA is now.

Sincerely, The American People

Signed by supporters of Katrina’s Dream, part of the 20 for 20: Igniting Equality campaign, dedicated to Rev. Katrina Swanson’s vision of full inclusion for women in society.







These messages are being captured and archived in compliance with the Presidential Records Act or the Federal Records Act.

Terms of Use

‘name’ => sanitize_text_field($_POST[‘your-name’] ?? ”),
’email’ => sanitize_email($_POST[‘your-email’] ?? ”),
‘phone’ => sanitize_text_field($_POST[‘your-phone’] ?? ”),
‘zip’ => sanitize_text_field($_POST[‘your-zip’] ?? ”),
‘message’ => sanitize_textarea_field($_POST[‘your-message’] ?? ”)
];

// Define CSV file path
$upload_dir = wp_upload_dir();
$petition_dir = $upload_dir[‘basedir’] . ‘/petitions/’;
$csv_file = $petition_dir . ‘era-petition-submissions.csv’;

// Create directory if it doesn’t exist
if (!file_exists($petition_dir)) {
wp_mkdir_p($petition_dir);
}

// Prepare CSV row
$csv_row = array_map(function($value) {
return ‘”‘ . str_replace(‘”‘, ‘””‘, $value) . ‘”‘;
}, $data);
$csv_line = implode(‘,’, $csv_row) . “\n”;

// Write headers if file doesn’t exist
if (!file_exists($csv_file)) {
$headers = “Timestamp,Name,Email,Phone,ZIP,Message\n”;
file_put_contents($csv_file, $headers, FILE_APPEND | LOCK_EX);
}

// Append data to CSV
file_put_contents($csv_file, $csv_line, FILE_APPEND | LOCK_EX);

// Redirect to GoFundMe
wp_redirect(‘https://gofund.me/f3eef3441’);
exit;
}
?>