Explorar el Código

Include input outside form demonstration

Add checkbox on sample form in README.
master
TheoryOfNekomata hace 3 años
padre
commit
5ea923e826
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      README.md

+ 6
- 1
README.md Ver fichero

@@ -42,13 +42,18 @@ For an example form:
```html
<!-- ... -->

<form id="form">
<form id="loginForm">
<input type="text" name="username" />
<input type="password" name="password" />
<button type="submit" name="type" value="client">Log In As Client</button>
<button type="submit" name="type" value="admin">Log In As Admin</button>
</form>

<label>
<input type="checkbox" name="remember" form="loginForm" />
Remember my login credentials
</label>

<!-- ... --->
```



Cargando…
Cancelar
Guardar