You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Application-Web/front/views/SampleForm.tsx

21 lines
577 B

import React from "react";
import ReactDOM from "react-dom/client";
export default function SampleForm() {
return (
<div>
<h1>Hello, this is a sample form made in react !</h1>
<form action="result" method="POST">
<label>your name: </label>
<input type="text" id="name" name="username"/>
<label>your password: </label>
<input type="password" id="password" name="password"/>
<input type="submit" value="click me!"/>
</form>
</div>
)
}