Arpit Vermaarpitvermatech4community.hashnode.dev·15 hours agoBuilding a Simple Cat Photo App with HTML:Introduction As a developer, sometimes you need a fun project to break the monotony of complex coding tasks. That’s where the Cat Photo App comes in! Today, I'll walk you through how I created a simple yet adorable cat photo application using pure HT...Discuss·3 likes·35 readsBeginner Projects
Meet Makwanamsquare.vercel.app·Sep 8, 2024Brand New Hooks In React!In this article, we will be looking at new form hooks that were recently added in the React Canary version. What are these hooks? React introduced Three new hooks that is useFormStatus, useActionState, and useOptimistic. Let's understand them one by ...DiscussReact
Vitthal Korvanvitthal-korvan.hashnode.dev·Sep 3, 2024React JS - Working With FormsWorking with input field in Forms import { useState } from 'react' import './App.css' function App() { const [username, setUsername]=useState("") //default value is empty string function handleUsername(e){ console.log(e.target.value); s...Discuss·5 likesReact-MasteryReact
Shivam Katareshivamkatareblog.hashnode.dev·Aug 10, 2024Creating an Email Contact Form in Next.js: Using Resend and ZodIntroduction Next.js is a powerful full-stack framework that allows us to build applications with front and backend features. It's very flexible and can be used for everything from simple static websites to complex web apps. Today, we will use Next.j...DiscussBeginner Developers
DAIKH NASSIMnhasbeen.hashnode.dev·Aug 4, 2024Zod + Vuetify = 💣 VuetiformsGoal Hi I created a small Library which I called Vuetiforms. It came to me since I was rather not satisfied with the current zod integration so I pushed it further. How It Works Its a dynamic form component leveraging the vuetify Library. You pass it...Discuss·3 likesVue.js
Zeeshan Mukhtarzeeshanmukhtar1.hashnode.dev·Aug 3, 2024Learn How to Easily Handle Forms with JavaScriptIn modern web development, handling user input effectively is crucial for creating dynamic and interactive forms. One common challenge developers face is managing form data when multiple checkboxes are involved. In this article, we'll walk you throug...Discussforms
Uvindu Abeywardhanauvindu-chronicles.hashnode.dev·Aug 2, 2024Creating and Connecting a Local Database Using Visual Studio: A Step-by-Step Guide for Windows FormsIntroduction: A Visual Studio local database is a database that is created and managed locally on your machine, often used for development and testing purposes. This allows you to develop and test your applications without needing access to a remote ...Discuss·14 likes·133 reads.NET
Jeff Jakinovichsandboxdev.hashnode.dev·Aug 1, 2024How To Stop Form Bots With Honeypot FieldsSpam bots are the worst. They can ruin a good contact form in a heartbeat. While getting rid of spam bots requires a lot of strategy and technology, simple honeypots are quite effective for their low effort. What is a honeypot? In the world of cyber...DiscussWeb Development
Nirban Roynirbanroy.hashnode.dev·Jul 31, 2024FORMS in HTML, REACT and NEXTWriting forms in plain HTML, React, and Next.js involves different approaches and levels of complexity. Below, we'll compare these three methods, discuss best practices, and touch on industry preferences. Comparison of Writing Forms Plain HTML Pros: ...DiscussReact
Ronit Gurjarronitgurjar.hashnode.dev·Jul 28, 2024A Short Guide to Multi-Step FormsContent: Introduction What is a Multi-step Form? Why use a Multi-step Form? When to use a Multi-step Form? How to make a Multi-step Form? (logic behind & demo in React) Conclusion Introduction We, Web developers and Software engineers use fo...Discuss·11 likes·39 readsReact