-
Notifications
You must be signed in to change notification settings - Fork 15
/
survey.php
60 lines (55 loc) · 1.58 KB
/
survey.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimal-ui" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Iceland|Orbitron" rel="stylesheet">
<link href="css/secgen.css" rel="stylesheet" type="text/css">
<link href="css/map.css" rel="stylesheet" type="text/css">
<style>
#middle, #content{
width:800px;
height:auto;
background:#111;
padding:0px;
margin:0px auto;
}
#content{
margin-top:30px;
}
#middle{
border:solid 1px #ABD17D;
border-radius:1em;
}
h1{
color:#ABD17D;
text-align:center;
padding:10px;
}
a{
padding:10px 20px 10px 20px;
background:#111;
border:1px solid #ABD17D;
border-radius: 0.5em;
color:#ABD17D;
text-decoration:none;
}
a:hover, tr:hover{
background:#ABD17D;
color:#000000;
}
</style>
</head>
<body id="main" style="background:url('images/bgadmin.png');">
<a href="index.php">Back</a>
<div id="middle">
<h1>Survey</h1>
</div>
<div id="content">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSegnaAvkM4xRHe859cJXA72Mz8esVZmNfOvVFbe255IQq82eg/viewform?c=0&w=1" width="800" height="900"></iframe>
</div>
</body>
</html>