
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@halo-lab/solid-form-getform-io
Advanced tools
Solid.js custom form integration with the getform.io service
This is a form component built with Solid.js that allows you to easily create a form that submits data to a GetForm endpoint. The form has three fields: name (input type="text"), email (input type="email"), and message (textarea). You can choose which fields to display by passing props to the component.
You can install the package using npm:
npm install @halo-lab/solid-form-getform-io
To use the form component, you need to import it into your Solid.js application:
import Form from '@halo-lab/solid-form-getform-io';
You can then use the component in your application:
<Form getFormID="your-getform-id" />
You need to provide your GetFormID as the getFormID prop.
By default, all three fields (name, email, and message) will be displayed in the form. If you want to display only specific fields, you can use the showName, showEmail, and showMessage props:
The following props are available for the form component:
Here's an example of how to use the form component:
import Form from '@halo-lab/solid-form-getform-io';
const App = () => {
function onFormSubmit() {
console.log("Form submitted!");
}
return (
<Form
getFormID="https://getform.io/f/your-getform-id"
showName={true}
showEmail={true}
showMessage={false}
onFormSubmit={onFormSubmit}
/>
);
}
Have fun ✌️
FAQs
Solid.js custom form integration with the getform.io service
We found that @halo-lab/solid-form-getform-io demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.