Поправлена структура, разделы в подразделы до 3.3

This commit is contained in:
Юлия Болотина
2022-08-04 12:59:10 +03:00
parent c46d95f4cd
commit a014b62268
787 changed files with 162678 additions and 782 deletions

View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="common.js"></script>
</head>
<body>
<form class="DEF_form JS_validate JS_placeholder_emulate" enctype="multipart/form-data" action="" method="POST" novalidate="novalidate">
<div class="DEF_form__item">
<label class="input_label">Имя</label>
<input type="text" value="" name="situation_name" data-rule-required="true" autocomplete="off" aria-required="true">
<div class="item_anno"></div>
</div>
<div class="DEF_form__item">
<label class="input_label">E-Mail</label>
<input type="email" value="" name="situation_email" data-rule-required="true" autocomplete="off" aria-required="true">
</div>
<div class="DEF_form__item">
<label class="textarea_label">Сообщение</label>
<textarea name="situation_message" data-rule-required="true" data-rule-minlength="2" aria-required="true"></textarea>
</div>
<div class="custom_upload_multiple">
<div class="custom_upload_wrap">
<input name="upl[]" type="file" value="">
</div>
</div>
<div class="BUTTON_wrap">
<button type="submit" class="BUTTON_01 BUTTON_01_type_01">Отправить</button>
</div>
</form>
</body>
</html>