-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilmadd.html
194 lines (194 loc) · 12.4 KB
/
filmadd.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/stylefilm.css">
<title>Добавить фильм</title>
</head>
<body>
<nav id="navigation">
<a href="filmmain.html" class="nav-link">На главную</a>
<a href="filmadd.html" class="nav-link">Добавить фильм</a>
</nav>
<main id="main">
<h1 id="form-header" class="header">Введите информацию о вашем фильме</h1>
<form action="" id="form-add-film">
<fieldset id="form-main-fields">
<div class="div-block-row">
<label class="form-label" for="film-title">Введите название фильма:</label>
<input class="form-fields form-input" type="text" name="film-title" id="input-film-title">
</div>
<div class="div-block-row">
<label class="form-label" for="film-country">Введите страну фильма:</label>
<input class="form-fields form-input" type="text" name="film-country" id="input-film-country">
</div>
<div class="div-block-row">
<label class="form-label" for="film-genre">Отметьте жанры фильма: </label>
<div class="div-block-list check-box-list form-fields">
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">биографический</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">боевик</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">вестерн</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">военный</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">детектив</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">детский</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">документальный</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">драма</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">исторический</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">комедия</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">короткометражный</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">криминал</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">мелодрама</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">мистика</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">мультфильм</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">мюзикл</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">научный</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">нуар</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">приключения</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">реалити-шоу</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">семейный</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">спорт</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">триллер</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">ужасы</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">фантастика</span>
</div>
<div class="check-box-block">
<input type="checkbox" name="film-genre" class="checkbox-film-genres">
<span class="check-box-value">фэнтези</span>
</div>
</div>
</div>
<div class="div-block-row">
<label class="form-label" for="film-director">Введите режиссера(ов) фильма:</label>
<input class="form-fields form-input" type="text" name="film-director" id="input-film-director">
</div>
<div class="div-block-row">
<label class="form-label" for="film-scripts">Введите тех, кто работал над сценарием:</label>
<input class="form-fields form-input" type="text" name="film-scripts" id="input-film-scripts">
</div>
<div class="div-block-row">
<label class="form-label" for="film-producer">Введите продюсера фильма:</label>
<input class="form-fields form-input" type="text" name="film-producer" id="input-film-producer">
</div>
<div class="div-block-row">
<label class="form-label" for="film-operator">Введите оператора фильма:</label>
<input class="form-fields form-input" type="text" name="film-operator" id="input-film-operator">
</div>
<div class="div-block-row">
<label class="form-label" for="film-compositor">Введите композитора фильма:</label>
<input class="form-fields form-input" type="text" name="film-compositor" id="input-film-compositor">
</div>
<div class="div-block-row">
<label class="form-label" for="film-budget">Введите бюджет фильма:</label>
<input class="form-fields form-input" type="text" name="film-budget" id="input-film-budget">
</div>
<div class="div-block-row">
<label class="form-label" for="film-box-office">Введите сумму кассовых сборов:</label>
<input class="form-fields form-input" type="text" name="film-box-office" id="input-film-box-office">
</div>
<div class="div-block-row">
<label class="form-label" for="film-age-rate">Выберите возрастной рейтинг:</label>
<select class="form-fields form-fields form-select" name="film-age-rate" id="select-film-age-rate">
<option value="0">0+</option>
<option value="6">6+</option>
<option value="12">12+</option>
<option value="16">16+</option>
<option value="18">18+</option>
</select>
</div>
<div class="div-block-row">
<label class="form-label" for="film-duration">Введите продолжительность фильма:</label>
<input class="form-fields form-input" type="text" name="film-duration" id="input-film-duration">
</div>
<div class="div-block-row">
<label class="form-label" for="film-date">Введите дату премьеры фильма:</label>
<input class="form-fields form-input-date" type="date" name="film-date" id="input-film-date">
</div>
<div class="div-block-row">
<label class="form-label" for="film-poster">Введите url или загрузите изображение постера фильма:</label>
<!--<input class="form-input" type="file" name="film-poster" id="file-film-poster">-->
<input class="form-fields form-input" type="text" name="film-poster" id="input-url-film-poster">
</div>
<input id="form-button-add" type="button" value="Добавить фильм в библиотеку.">
</fieldset>
<div id="film-poster-tmp"></div>
</form>
<script src="script/modules/film.js"></script>
<script src="script/scriptfilmadd.js"></script>
</main>
</body>
</html>