Поправил названия полей на формах регистрации и логина

This commit is contained in:
Никита Потапов 2024-04-30 22:04:00 +04:00
parent f52a3d782e
commit f02cd81dbb
2 changed files with 5 additions and 5 deletions

View File

@ -8,13 +8,13 @@
<label for="emailInput" class="me-2">
Email
</label>
<input id="emailInput" type="email" placeholder="mail@example.com" class="w-100"/>
<input id="emailInput" type="email" name="email" placeholder="mail@example.com" class="w-100"/>
</div>
<div class="mb-2 d-flex w-100">
<label for="passwordInput" class="me-2">
Пароль
</label>
<input id="passwordInput" type="password" class="w-100"/>
<input id="passwordInput" type="password" name="password" class="w-100"/>
</div>
<button class="btn btn-outline-primary" type="submit">
Войти

View File

@ -8,19 +8,19 @@
<label for="fioInput" class="me-2">
ФИО
</label>
<input id="fioInput" type="text" placeholder="Иванов Иван Иванович" class="w-100" />
<input id="fioInput" name="fio" type="text" placeholder="Иванов Иван Иванович" class="w-100" />
</div>
<div class="mb-2 d-flex w-100">
<label for="emailInput" class="me-2">
Email
</label>
<input id="emailInput" type="email" placeholder="mail@example.com" class="w-100" />
<input id="emailInput" type="email" name="email" placeholder="mail@example.com" class="w-100" />
</div>
<div class="mb-2 d-flex w-100">
<label for="passwordInput" class="me-2">
Пароль
</label>
<input id="passwordInput" type="password" class="w-100" />
<input id="passwordInput" type="password" name="password" class="w-100" />
</div>
<button class="btn btn-outline-success" type="submit">
Зарегистрироваться