-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliked interface.php
81 lines (51 loc) · 1.1 KB
/
liked interface.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
session_start();
if (isset($_POST['loved_it']))
{
$t=$_SESSION['loved_it']=$_POST['loved_it'];
}
else
{
echo"nothing choosen";
}
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
body
{
background: url('sun leaf.jpg') no-repeat;
background-position:center;
background-size:cover;
height:130vh;
margin:0px;
padding:0px;
font-family:sans-serif;
font-weight:bold;
font-size:24px;
display: flex;
justify-content:center;
align-items: center;
letter-spacing: 4px;
}
</style>
</head>
<body>
<div class="divv" align="center">
<center>
<img src="PicsArt heart.png" class="image">
<br>
<font color="black" style="text-transform:uppercase; "><h2>Did You Liked the Interface?</font></h2>
<img src="black man.gif" class="mast" >
<br>
<br>
<form name="f2" action="rate this.php" method="POST">
<input id="submit" name="yeah" type="submit" value="Oh,Yeah!">
<br>
<br>
<input id="submit" name="yeah" type="submit" value="Somewhat Yes!">
</form>
</div>
</body>
</html>