Untitled

 avatar
unknown
plain_text
a month ago
3.0 kB
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <div>
        <form action="/sendData" method="post">
            <label form="firstname"> First Name</label>
            <input type="text" id="firstname" name="firstname" minlength="2" maxlength="20" required>
            <br>
            <label form="lastname"> Last Name</label>
            <input type="text" id="lastname" name="lastname" minlength="2" maxlength="20" required>
            <br>
            <label form="email"> Email</label>
            <input type="email" id="email" name="email" placeholder="Enter your email" required>
            <br>
            <label form="password"> Password</label>
            <input type="password" id="password" name="password">
            <br>
            <label for="comments"> Comments</label>
            <textarea id="comments" name="comments" rows="6"></textarea>
            <br>
            <input type="submit" class="submit" value="submit">
        </form>
    </div>

    <div>
<form>
    <label class="donottouch"> How much do you like our products</label>
    <br>Not at all <input type="range" min="0" max="10" value="7.8"> More than anything
</form>
    </div>
    <div>
        <form>
            <label class="donottouvh"> When do you live the Airb&b apartment</label>
            <br><input type="date" >
        </form>
    </div>
    <div>
        <h1> Countries in Eu i want to visit</h1>
        <form action="/sendData" method="post">
            <label for="country1"> France</label>
            <input type="checkbox" id="country1" name="country1" value="country1-on">
            <br>
            <label for="country2"> Germany</label>
            <input type="checkbox" id="country2" name="country2" value="country2-on">
            <br>
            <label for="country3"> Italy</label>
            <input type="checkbox" id="country3" name="country3" value="country3-on">
            <br>
            <label for="country4"> Spain</label>
            <input type="checkbox" id="country4" name="country4" value="country4-on">
        </form>
    </div>
    <div>
        <h2>Ways of payment</h2>
        <form action="/SendData" method="post">
            <input type="radio" id="visa" name="payment" value="visa">
            <label for="visa"> VISA</label>
            <br>
            <input type="radio" id="mastercard" name="payment" value="mastercard">
            <label for="mastercard"> MASTERCARD</label>
         <br>
         <input type="radio" id="revolut" name="payment" value="revolut">
            <label for="revolut"> REVOLUT</label>
        <br>
        <input type="radio" id="cush" name="payment" value="cash">
            <label for="cash"> CASH</label>

        </form>
    </div>
</body>
</html>
Editor is loading...
Leave a Comment