forked from artsofte-php-course/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
43 lines (43 loc) · 1.64 KB
/
form.html
File metadata and controls
43 lines (43 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Заполнение формы для получия заявки на расчет</title>
</head>
<body>
<h1>Заявка на расчет</h1>
<form method="post" action="form.php">
<div>
<label for="age">Возраст</label>
<input type="number" min="18" max="100" name="age" id="age" value="18" step="1" required autofocus>
</div>
<div>
<span>Зарплатный клиент банка</span>
<label for="client">
<input type="checkbox" name="client" value="да" id="client">да
</label>
</div>
<div>
<label for="cost">Стоимость недвижимости</label>
<input type="number" min="0" max="25000000" name="cost" id="cost" step="1000000" value="0" required>
</div>
<div>
<label for="initial payment">Первоначальный взнос</label>
<input type="number" min="0" max="25000000" name="initial payment"
step="1000000" value="0" id="initial payment" required>
</div>
<div>
<label for="time">Срок кридитования</label>
<input type="number" min="36" max="360" name="time" id="time" value="36" step="1" required>
</div>
<div>
<label for="type house">Первоначальный взнос</label>
<select name="type house" id="type house">
<option value="Жилое">Жилое</option>
<option value="Нежилое">Нежилое</option>
</select>
</div>
<button type="submit">Отправить</button>
</form>
</body>
</html>