-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpostblank.php
More file actions
40 lines (30 loc) · 888 Bytes
/
Copy pathpostblank.php
File metadata and controls
40 lines (30 loc) · 888 Bytes
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
<?php
if (!empty($_GET["datamatrix"])){
$img = $_GET["datamatrix"];
}
else {
$img = "d2.png";
}
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/site.css" />
<title>Форма почтового отправления</title>
</head>
<body>
<div class="postcontainer">
<img src="img/postform.jpg">
<div class="datamatrix">
<img src="<?=$img?>">
</div>
<div>
<br>
<a href="index.php" class="btn btn-primary noprint">Новый бланк</a>
</div>
</div>
</body>
</html>