-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
23 lines (23 loc) · 1.03 KB
/
about.php
File metadata and controls
23 lines (23 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="ru" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<title>Контактная форма</title>
</head>
<body>
<?php require "blocks/header.php" ?>
<div class="container mt-5">
<h3>Контактная форма</h3>
<form class="" action="check.php" method="post">
<input type="email" name="email" placeholder="Введите Email" class="form-control"><br>
<textarea name="message" class="form-control" placeholder="Введите ваше сообщение"></textarea><br>
<button type="submit" name="send" class="btn btn-success">Отправить</button>
</form>
</div>
<?php require "blocks/footer.php" ?>
</body>
</html>