Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
contact-form-hexipi
Advanced tools
Note: This module requires bootstrap for optimal CSS styling.
npm install contact-form-hexipi bootstrap reactstrap --save
OR
yarn add contact-form-hexipi bootstrap reactstrap
//As a Class Component
import React from 'react';
import ContactForm, { FormRes } from 'contact-form-hexipi';
import 'bootstrap/dist/css/bootstrap.css';
import './App.css';
class App extends React.Component {
state = {
formSubmitResult: FormRes.NONE,
};
onSubmit = formData => {
//Use to call your backend/API functions (or anything else you need)
//to send your form data.
alert(`Form Data: ${JSON.stringify(formData)}`);
this.setState({
formSubmitResult: FormRes.OK,
})
};
//Set the state of the "formSubmitResult" to the default so that
//the form could be displayed again
formSubmitResultReset = () => this.setState({ formSubmitResult: FormRes.NONE });
render() {
return (
<div className="App">
<header className="App-header">
<ContactForm
submitMethod="post"
email="info@example.com"
//(EITHER OR, BUT NOT BOTH!)
tel="+18005555555"
//OR
telWithCountryCode={["8005555555", "US"]}
socialMediaLinks={[
//Facebook link
"https://www.facebook.com/HexiPi.Web.Dev",
//Instagram Link
"https://instagram.com/hexipi",
//YouTube link
"https://www.youtube.com/channel/UCxJUbbqJ_3hpaL53vn2EFVA",
//Website Link
"https://hexipi.com/"
//...Or anything you can think of!
]}
onSubmitCallback={this.onSubmit}
formSubmitResult={this.state.formSubmitResult}
formSubmitResultReset={this.formSubmitResultReset}
backgroundColor="#270941ec"
autoFormatPhoneNumber={
{ shouldFormat: true, countryCode: 'US' }
}
/>
</header>
</div>
);
}
}
export default App;
//As a Functional Component Using Hooks
import React, { useState } from 'react';
import ContactForm, { FormRes } from 'contact-form-hexipi';
import 'bootstrap/dist/css/bootstrap.css';
import './App.css';
const App = () => {
const [formSubmitResult, setFormSubmitResult] = useState(FormRes.NONE);
const onSubmit = formData => {
//Use to call your backend/API functions (or anything else you need)
//to send your form data.
alert(`Form Data: ${JSON.stringify(formData)}`);
setFormSubmitResult(FormRes.OK);
};
//Sets the state of the "formSubmitResult" to the default so that
//the form could be displayed again
const formSubmitResultReset = () => setFormSubmitResult(FormRes.NONE);
return (
<div className="App">
<header className="App-header">
<ContactForm
submitMethod="post"
formData={{
name: 'John Smith',
email: 'test@gmail.com',
phone_number: '4095555555',
message: 'Testing 1,2,3...'
}}
email="info@example.com"
//(EITHER OR, BUT NOT BOTH!)
tel="+18005555555"
//OR
telWithCountryCode={["8005555555", "US"]}
socialMediaLinks={[
//Facebook link
"https://www.facebook.com/HexiPi.Web.Dev",
//Instagram Link
"https://instagram.com/hexipi",
//YouTube link
"https://www.youtube.com/channel/UCxJUbbqJ_3hpaL53vn2EFVA",
//Website Link
"https://hexipi.com/"
//...Or anything you can think of!
]}
onSubmitCallback={onSubmit}
formSubmitResult={formSubmitResult}
formSubmitResultReset={formSubmitResultReset}
backgroundColor="#270941ec"
autoFormatPhoneNumber={
{ shouldFormat: true, countryCode: 'US' }
}
/>
</header>
</div>
);
}
export default App;
/* App.css */
...
/* Use the following CSS selector to customize the form container */
#contact-section {
background-image: linear-gradient(#270941ec, rgba(0, 0, 0, 0.555)),
url(~./images/custom-img.jpg);
/* Use the following CSS selectors to customize the form buttons */
#contact-section .contact-btn {
background-color: white;
color: black;
border-radius: 0;
}
#contact-section .contact-btn:hover {
background-color: yellow;
color: blue;
}
/* Other customizations you want */
...
}
For other CSS selectors and to see the default styles, go to the GitHub Repo here.
interface ContactFormProps {
//The form submission method (either "get" or "post")
submitMethod: 'get' | 'post',
//The optional form data of the type "ContactFormSubmissionData" that can be
//passed in to populate the form
//NOTE: It is the responsibility of the dev to clear the data manually upon
//when the user submits the form
formData?: ContactFormSubmissionData,
//The optional email address that would be displayed
email?: string,
//The optional phone number that would be displayed
tel?: string,
//The optional phone number that would be displayed
//0th element should contain the phone number
//1st element should contain the country code
telWithCountryCode?: string[],
//The optional fax number that would be displayed
fax?: string,
//The optional fax number that would be displayed
//0th element should contain the fax number
//1st element should contain the country code
faxWithCountryCode?: string[],
//The optional array of social media links/web links that would be displayed
socialMediaLinks?: string[],
//The optional custom main heading that would be displayed
mainHeading?: string,
//The optional custom subheading that would be displayed
subHeading?: string,
//The optional custom "OK" message that would be displayed
formSubmitOKMsg?: string,
//The optional custom "ERROR" message that would be displayed
formSubmitErrorMsg?: string,
//The result of the form submission (one of the options of the FormRes enum)
formSubmitResult: FormRes,
//The optional value of the background color of the page the ContactForm
//component;
//This helps determine the appropriate font color that the ContactForm
//component should use
//NOTE: This does not specify the ContactForm component's
//actual background color
backgroundColor?: string,
//The optional JSON object that tells the form to auto-format the "Phone"
//field as the user types in their phone number;
//The attribute takes a JSON object with the "PhoneNumberFormat" format;
autoFormatPhoneNumber?: boolean
//The callback that is executed after the form is submitted
//The "formData" parameter holds the data that was submitted on the form
//of the type "ContactFormSubmissionData"
onSubmitCallback: (formData: ContactFormSubmissionData) => void,
//The callback that is executed after the form is reset
formSubmitResultReset: () => void
};
static defaultProps = {
submitMethod: "get",
formData: {},
email: undefined,
tel: undefined,
telWithCountryCode: undefined,
fax: undefined,
faxWithCountryCode: undefined,
socialMediaLinks: undefined,
onSubmitCallback:
(formData: ContactFormSubmissionData) => alert(JSON.stringify(formData)),
mainHeading: "Need More Information?",
subHeading: "Send Us a Message!",
formSubmitOKMsg: "Form Submitted!",
formSubmitErrorMsg: "An error has occurred (why???)! 😥 Please try again later."
formSubmitResult: FormRes.NONE,
backgroundColor: 'black',
autoFormatPhoneNumber: { shouldFormat: true, countryCode: 'US' }
};
interface PhoneNumberFormat {
//Whether or not the "Phone" form field should be formatted;
//If "true" is specified, a countryCode MUST be provided
shouldFormat: boolean,
//The ISO 3166-1 alpha-2 two-letter country code the tells the
//ContactForm component how to format the phone number
//If "shouldFormat" is "true", a countryCode MUST be provided,
//otherwise it's not needed
countryCode?: string
}
enum FormRes {
//The form submitted successfully; a success message is displayed
OK,
//An error occurred during form submission; an error message is displayed
ERROR,
//The form is displayed and is ready to be filled out
NONE
}
interface ContactFormSubmissionData {
name: string,
email: string,
//Not a required form field for user;
//if not specified it will return an empty string for the key
phone_number?: string,
message: string
}
FAQs
This is a React.JS contact form module.
The npm package contact-form-hexipi receives a total of 0 weekly downloads. As such, contact-form-hexipi popularity was classified as not popular.
We found that contact-form-hexipi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.