-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostresponse.php
More file actions
51 lines (50 loc) · 1.4 KB
/
postresponse.php
File metadata and controls
51 lines (50 loc) · 1.4 KB
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
<?php
$cid=$_GET['q'];
$ct = $_GET['t'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./fontawesome/css/all.css">
<style>
#rep {
position:fixed;
top:85%;
right: 4%;
width: 90%;
}
#sms {
width : 60%;
border-radius: 5px;
border-color: black;
}
button {
background-color: white;
border-style: none;
}
</style>
</head>
<body>
<center>
<!-- <h3><?php echo $ct ?></h3> -->
</center>
<div id='rep'>
<center>
<form action="respprocess.php" method="POST">
<input type="text" name="t" style="display : none" id="" value="<?php echo $ct ?>">
<input type="number" name="q" style="display : none" id="" value="<?php echo $cid ?>">
<input type="text" name="response_body" id="sms">
<button name='respond' value='respond'><i class="fas fa-paper-plane fa-2x"></i></button>
</form>
<i class="fab fa-whatsapp"></i>
<i class="fab fa-telegram"></i>
<i class="fab fa-github"></i>
<i class="fab fa-linkedin"></i>
<i class="fab fa-google"></i>
</center>
</div>
</body>
</html>