update form to use placeholder and select instead of labels
This commit is contained in:
parent
23f2ddcd20
commit
f97f138fe9
|
@ -11,10 +11,11 @@
|
|||
<div id="root">
|
||||
|
||||
<form method="post" action="handler.php">
|
||||
<label for="url">URL:</label><br>
|
||||
<input type="text" id="url" name="url"><br>
|
||||
<label for="lang">Language:</label><br>
|
||||
<input type="text" id="lang" name="lang"><br><br>
|
||||
<input type="text" placeholder="YouTube URL" id="url" name="url"><br>
|
||||
<select id="lang" name="lang">
|
||||
<option value="en">EN</option>
|
||||
<option value="fr">FR</option>
|
||||
</select>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
|
||||
|
|
Loading…
Reference in New Issue