-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (44 loc) · 2.25 KB
/
index.html
File metadata and controls
53 lines (44 loc) · 2.25 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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="windows-1251">
<title>Форма обратной связи</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script defer src="./js/validate.js"></script>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="panel panel-default main">
<div class="panel-heading text">Форма обратной связи</div>
<div class="panel-body">
<form method="POST" action="" role="form">
<div class="text">Все поля обязательны для заполнения!</div>
<div class="form-group">
<label>Введите ФИО на русском языке</label>
<div class="inputText"><input class="form-control" type="text" name="soname" id="soname" min="3" max="20" placeholder="Фамилия" required></div><br>
</div>
<div class="form-group">
<div class="inputText"><input class="form-control" type="text" name="name" id="name1" min="3" max="20" required placeholder="Имя"></div><br>
</div>
<div class="form-group">
<div class="inputText"><input class="form-control" type="text" name="ots" id="ots" min="3" max="20" required placeholder="Отчество"></div><br>
</div>
<div class="form-group">
<label>Введите действующий e-mail для связи</label>
<div class="inputText"><input class="form-control" type="text" name="email" id="email" required placeholder="e-mail"></div><br>
</div>
<div class="form-group">
<label>Введите интересующий Вас вопрос ниже</label>
<div class="inputText"><textarea class="form-control" type="text" name="text" id="text" min="10" max="200" required placeholder="Текст вопроса"></textarea></div><br>
</div>
<div class="form-group">
<button type="button" class="btn btn-info" id="send">Отправить</button>
<div class="text has-error" id="msg">   </div>
</div>
</div>
</form>
<form> </form>
</div>
</body>
</html>