-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.html
More file actions
37 lines (36 loc) · 1.21 KB
/
Copy pathForm.html
File metadata and controls
37 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Form</title>
<link rel="stylesheet" href="galleria-css.css">
</head>
<body>
<form>
<div class="form_week">
<p>Выберите тип недели</p>
<p><input type="radio" name="p" value="5"> 5ти дневная неделя</p>
<p><input type="radio" name="p" value="6"> 6ти дневная неделя</p>
</div>
</form>
<div class="form_maxLessons">
<p> Введите максимальное кол-во занятий <input type="text" placeholder="Например, 4"></p>
</div>
<form>
<div class="form_language">
<p>Выберите язык для создания таблицы</p>
<p><input type="radio" name="p" value="rus"> Rus</p>
<p><input type="radio" name="p" value="eng"> Eng</p>
</div>
<button type="button" id="form_create">Создать</button>
<button type="button" id="form_delete">Удалить</button>
<button type="button" id="form_save">Сохранить</button>
<div class="errorText"></div>
</form>
<section>
<div class="table">
</div>
</section>
</body>
<script src="form.js" type="module"></script>
</html>