Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Бояков, Липилин. ФТ-201 #91

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 61 additions & 1 deletion static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,67 @@
<main>
<h1>Найди себе друга!</h1>

<!--Форму размещай тут-->
<form action="/pets/orders" method="post">
<FIELDSET>
Тип животного<br/>
<label>
<input type="radio" name="petType" value="dog">
Собака
</label><br/>
<label>
<input type="radio" name="petType" value="cat">
Попугай
</label><br/>
<label>
<input type="radio" name="petType" value="tiger" checked>
Tiger
</label><br/>
</FIELDSET>
<FIELDSET>
Пол<br/>
<label>
<input type="radio" name="gender" value="boy" checked>
Девочка
</label><br>
<label>
<input type="radio" name="gender" value="girl">
Мальчик
</label><br>
<label>
<input type="radio" name="gender" value="none">
Нет
</label><br>
</FIELDSET>
<label>
Цвет глаз
<input type="color" name="eyeColor" value="#200040">
</label><br/>
<label>
Длина хвоста
<input type="number" name="tailLength" min="7" max="120" value="70">
</label><br/>
<label>
Имя хозяина
<input type="text" name="name" value="Мальчик">
</label><br/>
<label>
Дата рождения
<input type="date" name="dateOfBirth">
</label><br/>
<label>
mail
<input type="email" name="email" value="a@a.a">
</label><br/>
<label>
Номер телефона
<input type="tel" name="phone" value="00000000000">
</label><br/>
<label>
<input type="checkbox" hidden="hidden" name="rules" required checked value="true">
</label><br/>
<input type="submit" title="Send">
<input type="reset" title="Reset">
</form>

</main>
</body>
Expand Down