code

code


<h2>Registration form </h2> <form> <label for="name">Name</label> <input type="text" name="name"> <br/> <br/> <label for="password">Password</label> <input type="password" name="password"> <br/> <br/> <label for="city">City</label> <input type="text" name="city"> <br/> <br/> <label> Gender: </label> <br/> <br/> <label for="gender_male">Male </label> <input type="radio" value="male" name="gender[]"> <label for="gender_female">Female</label> <input type="radio" value="female" name="gender[]"> <br/> <br/> <label >select option:</label> <select> <option value="">Please select</option> <option value="An Option">An Option</option> </select> <br/> <br/> <button onclick="location.href='https://obito.ml/testing/mit/index1.html'" type="button"> submit</button> </form>

Report Page