-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
47 lines (44 loc) · 1.56 KB
/
Copy pathindex.php
File metadata and controls
47 lines (44 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<title>Form</title>
</head>
<body>
<div class="col-md-4"></div>
<div class="col-md-4">
<div class="form-group">
<form method="post" action="academy.php">
<br>
<label for="exampleInputName2">Введите ФИО</label>
<input type="text" class="form-control" name="username"
placeholder="Иванов Иван Иванович" required>
<br>
<label for="exampleInputName2">Номер мобильного телефона</label>
<input type="text" class="form-control" name="mobile"
placeholder="9997991234" required>
<br>
<label for="exampleInputName2">Введите E-mail</label>
<input type="text" class="form-control" name="email"
placeholder="primer@mail.ru" required>
<br>
<label for="exampleInputName2">Дата рождения</label>
<input type="date" class="form-control" name="date"
required>
<br>
<label for="exampleInputName2">Комментарий</label>
<textarea name="comment" class="form-control"
rows="5" cols="30"></textarea><br>
<div class="g-recaptcha"
data-sitekey="6LezF5sUAAAAAEHvTmN2mTXQfmZ45PeTmcUiGgoj"></div><br>
<input type="submit" class="btn btn-default"
name="send" value="Отправить">
</form>
</div>
</div>
<div class="col-md-4"></div>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>