Untitled

 avatar
unknown
plain_text
a year ago
636 B
3
Indexable
<!-- registration_form.html -->

<!DOCTYPE html>
<html>
<head>
    <title>Farmer Registration</title>
</head>
<body>
    <h1>Farmer Registration</h1>
    <form action="/register" method="post">
        <label for="email">Email:</label><br>
        <input type="email" id="email" name="email" required><br>
        
        <label for="name">Name:</label><br>
        <input type="text" id="name" name="name" required><br>
        
        <label for="phone">Phone Number:</label><br>
        <input type="tel" id="phone" name="phone" required><br><br>
        
        <input type="submit" value="Register">
    </form>
</body>
</html>
Editor is loading...
Leave a Comment