This commit is contained in:
Mu-An 慕安 2019-05-17 10:38:31 -04:00 коммит произвёл GitHub
Родитель 234f942ecf
Коммит 52546ad45f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -42,12 +42,13 @@ remoteForm('form[data-remote]', async function(form, wants, request) {
```html
<form action="/signup" method="post" data-remote>
<label for="username">Username</label>
<input id="username" type="text" />
<input id="username" type="text">
<label for="password">Username</label>
<input id="password" type="password" />
<input id="password" type="password">
<button>Log in</button>
<button type="submit">Log in</button>
<div class="results"></div>
</form>
```