-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admin-Lab7-resps.php
38 lines (35 loc) · 1.72 KB
/
Admin-Lab7-resps.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Results</title>
<link rel="stylesheet" href="./css/main.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<?php
include "Admin-menu.php";
?>
<main class="section">
<div class="container">
<h2 class="title-1">Choose a respondent</h2>
<ul class="professions" id="users">
'<li style="background-color: #F9F9F9; border-radius: 10px; padding: 20px;">
<div style="display: flex; align-items: center; margin-bottom: 10px;">
<h3 style="font-size: 20px; margin: 0;">'+ name +'</h3>
<p style="font-size: 16px; margin: 0 0 5px;">'+ age +'</p>
<p style="font-size: 16px; margin: 0 0 5px;">'+ gender +'</p>
<a href="https://t.me/'+ telegram +'" style="display: inline-block; background-color: #4FC3F7; color: white; text-decoration: none; padding: 10px 20px; border-radius: 5px;">Telegram</a>
<a href="./Admin-Lab7-resp.php?id='+ id +'" style="display: inline-block; background-color: #00CC66; color: white; text-decoration: none; padding: 10px 20px; border-radius: 5px;">Посмотреть результаты</a>
</div>
</li>'
</ul>
</div>
</main>
<script src="./js/app.js"></script>
<script src="./js/menu.js"></script>
<script src="./js/Lab7-admin-users-result.js"></script>
</body>
</html>