-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.php
66 lines (64 loc) · 1.08 KB
/
confirmation.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
<html>
<head>
<title>Confirmation</title>
<script type="text/javascript" src="js/inputSearchForm.js"></script>
<script language="javascript">
//function recieves what button user pressed and directs them to the corresponding page
function init(what)
{
switch(what)
{
case 1:
window.location = "inputSearchForm.php";
break;
case 2:
window.location = "report.php";
break;
}
}
</script>
<style>
#container
{
position:absolute;
left:5%;
right:5%
}
p
{
display:inline;
font-family:arial,, helvetica, sans-serif;
color:#0000CD;
}
body
{
background-color:#FFF5EE;
}
h1
{
display:block;
color:#B22222;
}
table tr td
{
padding:0.5cm;
}
table
{
border-style:dotted;
}
</style>
</head>
<body>
<center><h1>Confirmation</h1></center>
<br />
<div id="container">
<center><p>Your Email was successfully logged on <?echo date("F j, Y, g:i a");?></p></center>
<br />
<center>
<input type="button" value="Run a Report" onclick="init(2)">
<input type="button" value="Input a New Email" onclick="init(1)">
</center>
</div>
</body>
</html>